IOS_OC_調(diào)用系統(tǒng)相機(jī)和相冊

效果圖:

效果圖

步驟:

1.配置info.plist文件中調(diào)用相機(jī)和相冊的權(quán)限

image

2.設(shè)置彈框添加事件

3.判斷并申請權(quán)限

4.調(diào)起系統(tǒng)相冊和相機(jī)

直接上代碼:


#import "ViewController.h"
#pragma mark - 01.使用相機(jī)相冊要導(dǎo)入頭文件的
#import <AVFoundation/AVFoundation.h>
#import <AssetsLibrary/AssetsLibrary.h>
#import <Photos/Photos.h>

@interface ViewController ()<UINavigationControllerDelegate,UIImagePickerControllerDelegate>
#pragma mark - 02.拖線一個(gè)imageView控件用來展示選中的圖片 & 創(chuàng)建一個(gè)彈框;
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
@property (nonatomic, strong) UIImagePickerController *imagePickerController;
@end

@implementation ViewController
#pragma mark - 03.懶加載初始化彈框;
- (UIImagePickerController *)imagePickerController {
    if (_imagePickerController == nil) {
        _imagePickerController = [[UIImagePickerController alloc] init];
        _imagePickerController.delegate = self; //delegate遵循了兩個(gè)代理
        _imagePickerController.allowsEditing = YES;
    }
    return _imagePickerController;
}
- (void)viewDidLoad {
    [super viewDidLoad];

    //MARK: - 04.給視圖添加手勢.(添加手勢就是租給那些自己買不起selector的控件一個(gè)觸發(fā)方法);
    //首先開啟該視圖與用戶交互的開關(guān).默認(rèn)是關(guān);
    //這個(gè)應(yīng)該是個(gè)輕拍手勢;
    self.imageView.userInteractionEnabled = YES;
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(imageViewIsSelector)];

    [self.imageView addGestureRecognizer:tap];
}

#pragma mark - 05.在租來的觸發(fā)方法里添加事件;
- (void)imageViewIsSelector {

    //MARK: - 06.點(diǎn)擊圖片調(diào)起彈窗并檢查權(quán)限;
    UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];

    UIAlertAction *camera = [UIAlertAction actionWithTitle:@"使用相機(jī)拍攝" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        [self checkCameraPermission];//調(diào)用檢查相機(jī)權(quán)限方法
    }];
    UIAlertAction *album = [UIAlertAction actionWithTitle:@"從相冊中選擇" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        [self checkAlbumPermission];//調(diào)起檢查相冊權(quán)限方法
    }];
    UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * action) {
        [self dismissViewControllerAnimated:YES completion:nil];
    }];

    [alert addAction:camera];
    [alert addAction:album];
    [alert addAction:cancel];

    [self presentViewController:alert animated:YES completion:nil];
}

#pragma mark - Camera(檢查相機(jī)權(quán)限方法)
- (void)checkCameraPermission {
    AVAuthorizationStatus status = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo];
    if (status == AVAuthorizationStatusNotDetermined) {
        [AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted) {
            if (granted) {
                [self takePhoto];
            }
        }];
    } else if (status == AVAuthorizationStatusDenied || status == AVAuthorizationStatusRestricted) {

        [self alertAlbum];//如果沒有權(quán)限給出提示
    } else {
        [self takePhoto];//有權(quán)限進(jìn)入調(diào)起相機(jī)方法
    }
}

- (void)takePhoto {
#pragma mark - 07.判斷相機(jī)是否可用稀拐,如果可用調(diào)起
    if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
        self.imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
        [self presentViewController:self.imagePickerController animated:YES completion:^{

        }];
    } else {//不可用只能GG了
        NSLog(@"木有相機(jī)");
    }
}
#pragma mark - Album(相冊流程與相機(jī)流程相同,相冊是不存在硬件問題的,只要有權(quán)限就可以直接調(diào)用)
- (void)checkAlbumPermission {
    PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
    if (status == PHAuthorizationStatusNotDetermined) {
        [PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {
            dispatch_async(dispatch_get_main_queue(), ^{
                if (status == PHAuthorizationStatusAuthorized) {
                    [self selectAlbum];
                }
            });
        }];
    } else if (status == PHAuthorizationStatusDenied || status == PHAuthorizationStatusRestricted) {
        [self alertAlbum];
    } else {
        [self selectAlbum];
    }
}

- (void)selectAlbum {
    //判斷相冊是否可用
    if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {
        self.imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        [self presentViewController:self.imagePickerController animated:YES completion:^{

        }];
    }
}

- (void)alertAlbum {
    UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"請?jiān)谠O(shè)置中打開相冊" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
        [self dismissViewControllerAnimated:YES completion:nil];
    }];
    [alert addAction:cancel];
    [self presentViewController:alert animated:YES completion:nil];
}
#pragma mark - UIImagePickerControllerDelegate(最后一步,選完就把圖片加上就完事了)
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<UIImagePickerControllerInfoKey,id> *)info {
    [picker dismissViewControllerAnimated:YES completion:nil];
    UIImage *image = [info valueForKey:UIImagePickerControllerEditedImage];
    self.imageView.image = image;
}

@end

基本上就大功告成了

Demo_下載

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子回还,更是在濱河造成了極大的恐慌榜旦,老刑警劉巖肚邢,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件诈铛,死亡現(xiàn)場離奇詭異篡九,居然都是意外死亡谐岁,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門榛臼,熙熙樓的掌柜王于貴愁眉苦臉地迎上來伊佃,“玉大人,你說我怎么就攤上這事讽坏。” “怎么了例证?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵路呜,是天一觀的道長。 經(jīng)常有香客問我,道長胀葱,這世上最難降的妖魔是什么漠秋? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮抵屿,結(jié)果婚禮上庆锦,老公的妹妹穿的比我還像新娘。我一直安慰自己轧葛,他們只是感情好搂抒,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著尿扯,像睡著了一般求晶。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上衷笋,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天芳杏,我揣著相機(jī)與錄音,去河邊找鬼辟宗。 笑死爵赵,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的泊脐。 我是一名探鬼主播空幻,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼晨抡!你這毒婦竟也來了氛悬?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤耘柱,失蹤者是張志新(化名)和其女友劉穎如捅,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體调煎,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡镜遣,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了士袄。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片悲关。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖娄柳,靈堂內(nèi)的尸體忽然破棺而出寓辱,到底是詐尸還是另有隱情,我是刑警寧澤赤拒,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布秫筏,位于F島的核電站诱鞠,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏这敬。R本人自食惡果不足惜航夺,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望崔涂。 院中可真熱鬧阳掐,春花似錦、人聲如沸冷蚂。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽帝雇。三九已至涮俄,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間尸闸,已是汗流浹背彻亲。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留吮廉,地道東北人苞尝。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像宦芦,于是被迫代替她去往敵國和親宙址。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容