一茫经、 打電話
- 最簡單的 缺點電話打完后,不會返回應用萎津。
NSURL *url1 = [NSURL URLWithString:@"tel://10086"];
// 注:該方法已在iOS10棄用
// [[UIApplication sharedApplication]openURL:url];
[[UIApplication sharedApplication]openURL:url1 options:@{} completionHandler:nil];
- 私有api<慎用> 會彈框詢問科平,撥打完后會返回應用
NSURL *url2 = [NSURL URLWithString:@"telprompt://10086"];
[[UIApplication sharedApplication]openURL:url2 options:@{} completionHandler:nil];
- 創(chuàng)建一個webView 加載url ,撥打完能自動返回應用
if (_webview == nil){
// !姜性!不要給webView設置尺寸 會遮擋
_webview = [[UIWebView alloc]initWithFrame:CGRectZero];
}
[_webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"tel://10086"]]];
二 、發(fā)短信
- 最簡單的 缺點發(fā)送后髓考,不會返回應用部念。
NSURL *url3 = [NSURL URLWithString:@"sms://10086"];
[[UIApplication sharedApplication]openURL:url3 options:@{} completionHandler:nil];
- 使用MessageUI框架
//#import <MessageUI/MessageUI.h>
//顯示發(fā)短信的控制器
MFMessageComposeViewController *vc = [[MFMessageComposeViewController alloc] init];
//設置短信內容
vc.body = @"快點給我加點話費。";
//設置收件人列表
vc.recipients = @[@"10086", @"1008611"];
//設置代理
vc.messageComposeDelegate = (id<MFMessageComposeViewControllerDelegate>)self;
//顯示控制器
[self presentViewController:vc animated:YES completion:nil];
//代理方法氨菇,當短信界面關閉的時候調用儡炼,發(fā)完后會自動回到原應用
- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{
關閉短信界面
[controller dismissViewControllerAnimated:YES completion:nil];
if (result == MessageComposeResultCancelled) {
NSLog(@"取消發(fā)送");
} else if (result == MessageComposeResultSent) {
NSLog(@"已經發(fā)出");
} else {
NSLog(@"發(fā)送失敗");
}
}
三、發(fā)郵件
- 最簡單的 缺點發(fā)送后查蓉,不會返回應用乌询。
NSURL *url3 = [NSURL URLWithString:@"mailto://10001@qq.com"];
[[UIApplication sharedApplication]openURL:url3 options:@{} completionHandler:nil];
- 跟短信第二種方法差不多 MFMailComposeViewController
//判斷用戶是否已設置郵件賬戶
if ([MFMailComposeViewController canSendMail]) {
[self sendEmailAction]; // 調用發(fā)送郵件的代碼
}else{
//給出提示,設備未開啟郵件服務
}
// 創(chuàng)建郵件發(fā)送界面
MFMailComposeViewController *mailCompose = [[MFMailComposeViewController alloc] init];
// 設置郵件代理
[mailCompose setMailComposeDelegate:self];
// 設置收件人
[mailCompose setToRecipients:@[@"10001@qq.com"]];
// 設置抄送人
[mailCompose setCcRecipients:@[@"10002@qq.com"]];
// 設置密送人
[mailCompose setBccRecipients:@[@"10003@qq.com"]];
// 設置郵件主題
[mailCompose setSubject:@"設置郵件主題"];
//設置郵件的正文內容
NSString *emailContent = @"我是郵件內容";
// 是否為HTML格式
[mailCompose setMessageBody:emailContent isHTML:NO];
// 如使用HTML格式,則為以下代碼
// [mailCompose setMessageBody:@"<html><body><p>Hello</p><p>World豌研!</p></body></html>" isHTML:YES];
//添加附件
UIImage *image = [UIImage imageNamed:@"qq"];
NSData *imageData = UIImagePNGRepresentation(image);
[mailCompose addAttachmentData:imageData mimeType:@"" fileName:@"qq.png"];
NSString *file = [[NSBundle mainBundle] pathForResource:@"TestPDF" ofType:@"pdf"];
NSData *pdf = [NSData dataWithContentsOfFile:file];
[mailCompose addAttachmentData:pdf mimeType:@"" fileName:@"TestPDF.pdf"];
// 彈出郵件發(fā)送視圖
[self presentViewController:mailCompose animated:YES completion:nil];
//代理方法
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
關閉郵件界面
[controller dismissViewControllerAnimated:YES completion:nil];
if (result == MFMailComposeResultCancelled) {
NSLog(@"取消發(fā)送");
} else if (result == MFMailComposeResultSent) {
NSLog(@"已經發(fā)出");
} else {
NSLog(@"發(fā)送失敗");
}
}
四妹田、打開其他常見文件
如果想打開一些常見文件,比如html鹃共、txt鬼佣、PDF、PPT等霜浴,都可以使用UIWebView打開
只需要告訴UIWebView文件的URL即可
至于打開一個遠程的共享資源晶衷,比如http協(xié)議的,也可以調用系統(tǒng)自帶的Safari瀏覽器:
NSURL *url = [NSURL URLWithString:@"http://www.baidu.com)"];
[[UIApplication sharedApplication]openURL:url options:@{} completionHandler:nil];
五阴孟、應用評分
為了提高應用的用戶體驗晌纫,經常需要邀請用戶對應用進行評分,應用評分無非就是跳轉到AppStore展示自己的應用永丝,然后由用戶自己撰寫評論锹漱,如何跳轉到AppStore,并且展示自己的應用
方法
NSString *appID = @"725296055”;
NSString *str = [NSString stringWithFormat:
@"itms-apps://itunes.apple.com/cn/app/id%@?mt=8", appID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];