我们在程序中或多或少都会使用到手机的一些应用程序,比如电话,短信,浏览器,相机,相册等,那么我们该如何调用这些系统自带的应用程序呢?下面我一一说来.
调用电话、浏览器
对于调用电话和浏览器比较简单,使用UIApplication调用openURL方法.
调用系统电话
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"tel://10086"]];
调用系统safari浏览器
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"http://www.coder-dong.com"]];
调用短信功能
调用系统的短信功能, 同样使用UIApplication调用openURL方法. 我们只能openURL的方法中只能设定号码,不能做内容太上的更改.那么我们就需要导入我们的MessageUI.framework库,然后导入头文件MFMessageComposeViewController.h,并实现代理方法.
导入MFMessageComposeViewController头文件
#import
实现自定义方法并设置代理
- (IBAction)SMSAction:(id)sender { [[UIApplicationsharedApplication] openURL:[NSURLURLWithString:@"sms://10086"]]; [selfsendSMS:@"我想咨询一下话费余额是不是一百万."recipientList:@[@"10086客服"]];}- (void)sendSMS:(NSString*)bodyOfMessage recipientList:(NSArray*)recipients{ MFMessageComposeViewController *controller = [[MFMessageComposeViewController alloc] init];if([MFMessageComposeViewController canSendText]){ controller.body= bodyOfMessage; controller.recipients= recipients; controller.messageComposeDelegate=self; [selfshowDetailViewController:controller sender:nil]; } }
当完成消息的发送之后,我们就需要调用我们的代理方法,给用户反馈信息
//代理方法的实现-(void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result{if(result == MessageComposeResultCancelled){NSLog(@"取消发送消息"); }elseif(result == MessageComposeResultSent){NSLog(@"消息已经发送"); }else{NSLog(@"消息发送失败"); }}
调用相机、相册
调用相机、相册我们需要使用到UIImagePickerController这个类,所以我们需要首先导入这个类
#import
然后我们在点击方法中实现调用相机,当然了,调用的时候,我们要先判断设备是否存在摄像头.
//设置调用类型为相机UIImagePickerControllerSourceTypesourceType =UIImagePickerControllerSourceTypeCamera;if(![UIImagePickerControllerisSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {NSLog(@"本设备未发现摄像头!");return; }UIImagePickerController*pickerController = [[UIImagePickerControlleralloc]init]; pickerController.sourceType= sourceType; pickerController.delegate=self; pickerController.allowsEditing=YES;//设置是否可以进行编辑[selfshowDetailViewController:pickerController sender:nil];
调用系统相册,调用系统相册的时候,跟调用相机的时候十分相似.
//设置调用类型为相册.UIImagePickerControllerSourceTypesourceType =UIImagePickerControllerSourceTypePhotoLibrary;UIImagePickerController*pickerController = [[UIImagePickerControlleralloc]init]; pickerController.sourceType= sourceType; pickerController.delegate=self; pickerController.allowsEditing=YES; [selfshowDetailViewController:pickerController sender:nil];
我们调用系统相册和相机最终的目的是为了获得系统中的图片资源.所以我们需要实现代理方法,获取到我们的图片.
-(void)imagePickerController:(UIImagePickerController*)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{NSString*type = [info objectForKey:UIImagePickerControllerMediaType];//当选择的类型是图片if([type isEqualToString:@"public.image"]) {//先把图片转成NSDataUIImage* image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];NSData*data;if(UIImagePNGRepresentation(image) ==nil) { data =UIImageJPEGRepresentation(image,1.0); }else{ data =UIImagePNGRepresentation(image); }//图片保存的路径//这里将图片放在沙盒的documents文件夹中NSString* DocumentsPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];//文件管理器NSFileManager*fileManager = [NSFileManagerdefaultManager];//把刚刚图片转换的data对象拷贝至沙盒中 并保存为image.png[fileManager createDirectoryAtPath:DocumentsPath withIntermediateDirectories:YESattributes:nilerror:nil]; [fileManager createFileAtPath:[DocumentsPath stringByAppendingString:@"/image.png"] contents:data attributes:nil];//得到选择后沙盒中图片的完整路径NSString* filePath = [[NSStringalloc]initWithFormat:@"%@%@",DocumentsPath,@"/image.png"];NSLog(@"%@",filePath);//关闭相册界面[picker dismissModalViewControllerAnimated:YES];//创建一个选择后图片的小图标放在下方//类似微薄选择图后的效果UIImageView*smallimage = [[UIImageViewalloc] initWithFrame:CGRectMake(50,120,40,40)] ; smallimage.image= image;//加在视图中[self.viewaddSubview:smallimage]; }}
整体上看 ,调用系统的一些应用还是很简单的,希望这篇调用大乱斗能对大家有所帮助.
--->参考博客链接.
文/神经骚栋(作者)
原文链接:http://www.jianshu.com/p/d8724741acea
著作权归作者所有,转载请联系作者获得授权,并标注“作者”。