第一種:
創(chuàng)新互聯(lián)公司于2013年成立,先為鄰水等服務(wù)建站,鄰水等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為鄰水企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
NSMutableString *string = [[NSMutableString alloc]?initWithFormat:@"tel:%@",@"15139877951"];
[[UIApplication?sharedApplication]?openURL:[NSURL?URLWithString:string]];
注:撥打完電話后回不到原來的應(yīng)用,會停留在通訊錄里,而且是直接撥打不彈出提示。
第二種:
UIWebView *web?= [[UIWebView?alloc]?init];[self.view?addSubview:web];
NSMutableString?*string = [[NSMutableString?alloc]?initWithFormat:@"tel:%@",@"15139877951"];
[web?loadRequest:[NSURLRequest?requestWithURL:[NSURL?URLWithString:string]]];
注:撥打電話后還會回到原來的程序,也會彈出提示(推薦使用)
第三種:
NSMutableString?*string = [[NSMutableString?alloc]?initWithFormat:@"telprompt:%@",@"15139877951"];
[[UIApplication?sharedApplication]?openURL:[NSURL?URLWithString:string]];
注:撥打電話后會回到原來的程序里,也會彈出提示,但是注意這里的是telprompt??
下面是我在網(wǎng)上找到的結(jié)果。應(yīng)該是可以用的。
1、調(diào)用 自帶mail
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];
2、調(diào)用 電話phone
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://xxxxxxxx"]];
iOS應(yīng)用內(nèi)撥打電話結(jié)束后返回應(yīng)用
一般在應(yīng)用中撥打電話的方式是:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://xxx"]];
使用這種方式撥打電話時,當(dāng)用戶結(jié)束通話后,iphone界面會停留在電話界面。
用如下方式,可以使得用戶結(jié)束通話后自動返回到應(yīng)用:
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、調(diào)用 SMS
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://800888"]];
4、調(diào)用自帶 瀏覽器 safari
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@""]];
調(diào)用phone可以傳遞號碼,調(diào)用SMS 只能設(shè)定號碼,不能初始化SMS內(nèi)容。
若需要傳遞內(nèi)容可以做如下操作:
加入:MessageUI.framework
#import MessageUI/MFMessageComposeViewController.h
實現(xiàn)代理:MFMessageComposeViewControllerDelegate
調(diào)用sendSMS函數(shù)
//內(nèi)容,收件人列表
- (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];
}
}
// 處理發(fā)送完的響應(yīng)結(jié)果
- (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")
}
1,這種方法,撥打完電話回不到原來的應(yīng)用,會停留在通訊錄里,而且是直接撥打,不彈出提示
NSMutableString* str=[[NSMutableStringalloc]initWithFormat:@"tel:%@",@"186xxxx6979"];//??????????? NSLog(@"str======%@",str);[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
2,這種方法,打完電話后還會回到原來的程序,也會彈出提示,推薦這種
NSMutableString* str=[[NSMutableStringalloc]initWithFormat:@"tel:%@",@"186xxxx6979"];UIWebView* callWebview = [[UIWebViewalloc]init];
[callWebviewloadRequest:[NSURLRequestrequestWithURL:[NSURLURLWithString:str]]];
[self.viewaddSubview:callWebview];
[callWebviewrelease];
[strrelease];
3,這種方法也會回去到原來的程序里(注意這里的telprompt),也會彈出提示
NSMutableString* str=[[NSMutableStringalloc]initWithFormat:@"telprompt://%@",@"186xxxx6979"];//??????????? NSLog(@"str======%@",str);
[[UIApplicationsharedApplication]openURL:[NSURLURLWithString:str]]