如何在Iphone sdk中发送短信和接收短信?

时间:2010-03-22 05:51:57

标签: iphone objective-c sms

  

可能重复:
  How to programmatically send SMS on the iPhone?

我想在我的应用程序中实现SMS功能。有没有办法做到这一点,或任何文档来实现这个功能?任何人都可以为此提供示例代码吗?

1 个答案:

答案 0 :(得分:1)

你可以使用像

这样的东西
NSString *message = [[NSString alloc] initWithFormat:@"sms:%@",phonenostring];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:message ]];