标签: iphone objective-c sms
可能重复: How to programmatically send SMS on the iPhone?
我想在我的应用程序中实现SMS功能。有没有办法做到这一点,或任何文档来实现这个功能?任何人都可以为此提供示例代码吗?
答案 0 :(得分:1)
你可以使用像
NSString *message = [[NSString alloc] initWithFormat:@"sms:%@",phonenostring]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:message ]];