I want to send a background SMS in iOS 7, and i dont want user to have to interact with any front end view. How can i do this ? I will use this application for myself (no app store), so private api allowed .
Asked
Active
Viewed 1,163 times
3
-
Have a look at this question http://stackoverflow.com/questions/22653828/hacking-into-mfmessagecomposeviewcontroller It might give you ideas do achieve it in unorthodox ways. But there is no answer to that question yet. – Selvin Apr 21 '14 at 06:52
1 Answers
-1
With MFMessageComposerViewController it is not possible to send without user interaction. You have to take SMS gateway and implement your own way of sending SMS, than only it is possible. Like you have to create webservice and accept parameters from iPhone like phonenumber and message and than send SMS using SMS gateway.
Hope this helps.

Keshav
- 2,965
- 3
- 25
- 30
-
have you implemented like this in your app?? Please let me know if you have done like this as I need to implement same in my iOS app. Thank you. – Narasimha Nallamsetty Jul 25 '15 at 07:46