Send SMS programmatically, without the SMS composer window

后端 未结 6 1464
我在风中等你
我在风中等你 2021-02-01 07:32

Until yesterday I thought that it was not possible to send background SMS without using the IOS SMS interface (Which many people here assure also). However, today I downloaded a

6条回答
  •  别那么骄傲
    2021-02-01 08:03

    You can use:

    [[UIApplication sharedApplication] openURL: @"sms:+3912345678"];
    

    it doesn't work on simulator... and you cannot send programmatically sms!

    Tested on iOS < 6.

提交回复
热议问题