关闭

IOS 开发调用打电话,发短信

发表于:2014-8-01 09:38

字体: | 上一篇 | 下一篇 | 我要投稿

 作者:未知    来源:WEB开发网

  1、调用 自带mail
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];
  2、调用 电话phone
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8008808888"]];
  iOS应用内拨打电话结束后返回应用
  一般在应用中拨打电话的方式是:
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://123456789"]];
  使用这种方式拨打电话时,当用户结束通话后,iphone界面会停留在电话界面。
  用如下方式,可以使得用户结束通话后自动返回到应用:
  UIWebView*callWebview =[[UIWebView alloc] init];
  NSURL *telURL =[NSURL URLWithString:@"tel:10086"];// 貌似tel:// 或者 tel: 都行
  [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];
  //记得添加到view上
  [self.view addSubview:callWebview];
  还有一种私有方法:(可能不能通过审核)
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://10086"]];
  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了
《2023软件测试行业现状调查报告》独家发布~

关注51Testing

联系我们

快捷面板 站点地图 联系我们 广告服务 关于我们 站长统计 发展历程

法律顾问:上海兰迪律师事务所 项棋律师
版权所有 上海博为峰软件技术股份有限公司 Copyright©51testing.com 2003-2024
投诉及意见反馈:webmaster@51testing.com; 业务联系:service@51testing.com 021-64471599-8017

沪ICP备05003035号

沪公网安备 31010102002173号