日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

UIImagePickerController和UIAlertController结合使用

發布時間:2023/12/18 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 UIImagePickerController和UIAlertController结合使用 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

在處理個人資料 - 頭像的時候,通常有兩個選項,一個是調用系統相機,一個是調用系統相冊。這里要使用的就是UIImagePickerController方法。

在頭像位置的imageView添加一個手勢,或者添加一個透明的按鈕,用來實現click方法,直接上代碼:

- (IBAction)click:(id)sender{//創建提醒視圖 UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提醒" message:nil preferredStyle:UIAlertControllerStyleActionSheet];UIAlertAction *alertAction = [UIAlertAction actionWithTitle:@"相機" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {//判斷設備是否存在攝像頭,有就調用系統相機,沒有,就提醒用戶if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {//創建相機 UIImagePickerController *picker = [[UIImagePickerController alloc] init];//文件由來 picker.sourceType = UIImagePickerControllerSourceTypeCamera; //指定數據來源來自于相機 picker.delegate = self;// 指定代理 picker.allowsEditing = YES; //允許編輯//模態彈出 [self presentViewController:picker animated:YES completion:nil];}else{//沒有攝像頭,提醒用戶 您的設備沒有攝像頭 UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"您的設備沒有攝像頭" message:nil preferredStyle:UIAlertControllerStyleAlert];UIAlertAction *alertAction1 = [UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDestructive handler:nil];[alertController addAction:alertAction1];[self presentViewController:alertController animated:YES completion:nil];}}];[alertController addAction:alertAction];UIAlertAction *alertAction2 = [UIAlertAction actionWithTitle:@"相冊" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {UIImagePickerController *pickerC = [[UIImagePickerController alloc] init];pickerC.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;//指定數據來源為相冊 pickerC.delegate = self; //指定代理 pickerC.allowsEditing = YES; // 允許編輯 [self presentViewController:pickerC animated:YES completion:nil];}];[alertController addAction:alertAction2];[self presentViewController:alertController animated:YES completion:nil];}//選取圖片之后執行的方法- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{NSLog(@"%@",info);UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];self.photoImage.image = image;[picker dismissViewControllerAnimated:YES completion:nil];}

?

轉載于:https://www.cnblogs.com/Walking-Jin/p/5468379.html

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的UIImagePickerController和UIAlertController结合使用的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。