码迷,mamicode.com
首页 > 移动开发 > 详细

IOS调用电话,短信等

时间:2014-12-08 12:29:09      阅读:339      评论:0      收藏:0      [点我收藏+]

标签:ios   短信   电话   

1、
调用 电话phone
  iOS应用内拨打电话结束后返回应用
  一般在应用中拨打电话的方式是:
  

 NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"tel:10086"]];

   [[UIApplication sharedApplication] openURL:url];

  使用这种方式拨打电话时,当用户结束通话后,iphone界面会停留在电话界面。
  用如下方式,可以使得用户结束通话后自动返回到应用:
  UIWebView*callWebview =[[UIWebView alloc] init];
  NSURL *telURL =[NSURL URLWithString:@"tel:10086"];// 貌似tel:// 或者 tel: 都行
  [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];
  //记得添加到view上
  [self.view addSubview:callWebview];//不能缺少
  2、
  调用 自带mail
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];

  3、调用 SMS
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://800888"]];
  4、调用自带 浏览器 safari
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.hzlzh.com"]];
  调用phone可以传递号码,调用SMS 只能设定号码,不能初始化SMS内容。
  若需要传递内容可以做如下操作:
  加入:MessageUI.framework
  #import <MessageUI/MFMessageComposeViewController.h>
  实现代理:MFMessageComposeViewControllerDelegate
  调用sendSMS函数
//内容,收件人列表
- (void)sendSMS:(NSString *)bodyOfMessage recipientList:(NSArray *)recipients
{
MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init] autorelease];
if([MFMessageComposeViewController canSendText])
{
controller.body = bodyOfMessage;
controller.recipients = recipients;
controller.messageComposeDelegate = self;
[self presentModalViewController:controller animated:YES];
}
}
// 处理发送完的响应结果
- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{
[self dismissModalViewControllerAnimated:YES];
if (result == MessageComposeResultCancelled)
NSLog(@"Message cancelled")
else if (result == MessageComposeResultSent)
NSLog(@"Message sent")
else
NSLog(@"Message failed")
}
  默认发送短信的界面为英文的,解决办法为:
  在.xib 中的Localization添加一組chinese就ok了

IOS调用电话,短信等

标签:ios   短信   电话   

原文地址:http://blog.csdn.net/u014202635/article/details/41800615

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!