首页 > 代码库 > iOS发送短信
iOS发送短信
iPhone开发,发送短信的方法:
iPhone开发中,发送短信方法有二:
1。URL Scheme,这样不可以设置短信内容
1 2 3 | [[ UIApplication sharedApplication ] openURL :[ NSURL URLWithString : @ "sms://10086" ]]; //打电话可以这样 //[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://10086"]]; |
2。MFMessageComposeViewController,这样可以设置短信的内容
1 2 3 4 5 6 7 8 | MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc ] init ] autorelease ]; if ([MFMessageComposeViewController canSendText ]) { if (![ self .friendLabel.text isEqualToString : @ "{好友}" ]) controller.recipients = [ NSArray arrayWithObjects : self .friendLabel.text, nil ]; controller.body = self .shareMessageTextView.text; controller.messageComposeDelegate = self ; [ self presentModalViewController :controller animated : YES ]; } |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。