3

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 .

tesmojones
  • 2,496
  • 2
  • 21
  • 40
  • 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 Answers1

-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