开发者

iPhone: Sending SMS and altering Voicemail message

开发者 https://www.devze.com 2022-12-23 06:40 出处:网络
it is possible 开发者_如何学运维with iphone sdk to send sms to a user or change the voicemail greeting?

it is possible 开发者_如何学运维with iphone sdk to send sms to a user or change the voicemail greeting?

thank you


Voicemail greeting: no, you cannot change this from your app.

SMS: limited. You can open a url to the SMS app that start a message to a phone number but cannot actually fill in any message

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"sms://%@", phoneNumberString]];
[[UIApplication sharedApplication] openURL:url];

This code should launch the Messages app. You cannot send an SMS without leaving the app.

You can however, use 3rd party services that send SMS's for you via the APIs they expose to you. But these would not be sent from the users iPhone like the SMSs they send on their own.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号