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

打开网址2012-09-07 10:33:32     我来讲两句      收藏    我要投稿

一、调用 自带mail
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]]; php

二、调用 电话phone
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8008808888"]];
iOS应用内拨打电话结束后返回应用
通常在应用中拨打电话的方式是:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://123456789"]]; html

使用这种方式拨打电话时,当用户结束通话后,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"]]; iphone

三、调用 SMS
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://800888"]]; 函数

四、调用自带 浏览器 safari
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.hzlzh.com"]]; spa

调用phone能够传递号码,调用SMS 只能设定号码,不能初始化SMS内容。 代理

若须要传递内容能够作以下操做:
加入:MessageUI.framework htm

#import <MessageUI/MFMessageComposeViewController.h> ip

实现代理:MFMessageComposeViewControllerDelegate ci

 

调用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")  }  

相关文章
相关标签/搜索