ios 判断用户是否开启权限---并跳转设

1、相册相机
2、通知
3、通讯录--->🔗
4、定位

1. 判断 访问相册 或 相机 权限是否开启

//在info.plist 里面设置

Privacy - Camera Usage Description App需要您的同意,才能访问相
Privacy - Photo Library Usage Description App需要您的同意,才能访问相册

科普:

相册

//相册权限判断 需要引入框架

#import <Photos/PHPhotoLibrary.h>  //相册

PHAuthorizationStatus相册权限状态判断
在8.0系统以后,新加入了Photos.framework框架,我们可以利用框架中的PHAuthorizationStatus进行相册权限状态判断。

判断是否开启相册权限 的4中状态

typedef NS_ENUM(NSInteger,PHAuthorizationStatus) { 

       //1. 用户还没有关于这个应用程序做出了选择 
        PHAuthorizationStatusNotDetermined = 0, 

        //2. 这个应用程序未被授权访问图片数据。用户不能更改该应用程序的状态,可能是由于活动的限制,如家长控制到位。   
        PHAuthorizationStatusRestricted, 

       //3. 用户已经明确否认了这个应用程序访问图片数据  
        PHAuthorizationStatusDenied,

       //4. 用户授权此应用程序访问图片数据  
        PHAuthorizationStatusAuthorized

    }PHOTOS_AVAILABLE_IOS_TVOS(8_0, 10_0);

相机

//相册权限判断 需要引入框架

#import <AVFoundation/AVCaptureDevice.h>
#import <AVFoundation/AVMediaFormat.h>

判断是否开启相机权限 的4中状态

typedef NS_ENUM(NSInteger, AVAuthorizationStatus) {  

//1. 表明用户尚未选择关于客户端是否可以访问硬件   
  AVAuthorizationStatusNotDetermined = 0,  

//2. 客户端未被授权访问硬件的媒体类型。用户不能改变客户机的状态,可能由于活跃的限制,如家长控制  
  AVAuthorizationStatusRestricted,  

//3. 明确拒绝用户访问硬件支持的媒体类型的客户
   AVAuthorizationStatusDenied, 

//4. 客户端授权访问硬件支持的媒体类型
   AVAuthorizationStatusAuthorized 

} NS_AVAILABLE_IOS(7_0) __TVOS_PROHIBITED;
=================使用====================
//选择从相册获取图片
//判断状态  如果已经授权 则从相册选取相片 
         如果没有授权  则跳转到授权设置界面
//选择从相机获取图片
//判断状态  如果已经授权 则打开摄像头 
         如果没有授权  则跳转到授权设置界面


//引入下面的框架
//相册权限判断 需要引入框架

#import <Photos/PHPhotoLibrary.h>  //相册

//相册权限判断 需要引入框架
#import <AVFoundation/AVCaptureDevice.h>
#import <AVFoundation/AVMediaFormat.h>

//【注意】  控制器要遵循的协议
相册  <UIImagePickerControllerDelegate>
         <UINavigationControllerDelegate>
 //自定义的枚举
typedef NS_ENUM(NSInteger, ChosePhontType) {

    ChosePhontTypeAlbum,  //相册

    ChosePhontTypeCamera   //相机

};

//下面部分可以直接粘贴复制使用

    -(void)clickHeaderImageView{   //点击头像

            UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"选择相片" message:nil preferredStyle:UIAlertControllerStyleActionSheet];
            UIAlertAction *album = [UIAlertAction actionWithTitle:@"相册" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
                [self chosePhoto:ChosePhontTypeAlbum]; //从系统相册选择照片
            }];

            UIAlertAction *camera = [UIAlertAction actionWithTitle:@"相机" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
                [self chosePhoto:ChosePhontTypeCamera]; //相机
            }];

            UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

            }];

            [alert addAction:album];
            [alert addAction:camera];
            [alert addAction:cancel];
            [self presentViewController:alert animated:YES completion:^{

            }];

    }

    //==========访问系统  相册 / 相机  ===============

    - (void)chosePhoto:(ChosePhontType)type{

        UIImagePickerController *piker = [[UIImagePickerController alloc] init];
        piker.delegate = self;
        piker.allowsEditing = YES;

        if (type == ChosePhontTypeAlbum) {   // 相册
            //======判断 访问相册 权限是否开启=======
            PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
            //有被授权访问的照片数据   用户已经明确否认了这一照片数据的应用程序访问
            if (status == PHAuthorizationStatusRestricted ||
                status == PHAuthorizationStatusDenied) {

                //====没有权限====
                UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"去开启访问相册权限?" message:nil preferredStyle:UIAlertControllerStyleAlert];
                UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

                }];

                UIAlertAction *ok = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
                    //===无权限 引导去开启===
                    [self openJurisdiction];
                }];

                // 将UIAlertAction添加到UIAlertController中
                [alertController addAction:cancel];
                [alertController addAction:ok];
                // present显示
                [self presentViewController:alertController animated:YES completion:nil];
            }else{    //====有访问相册的权限=======
                piker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
            }

        }else if (type == ChosePhontTypeCamera) {  // 相机

            //======判断 访问相机 权限是否开启=======
            AVAuthorizationStatus authStatus =  [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo];

            //===无权限====
            if (authStatus == AVAuthorizationStatusRestricted || authStatus ==AVAuthorizationStatusDenied){
                //====没有权限====
                UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"去开启访问相机权限?" message:nil preferredStyle:UIAlertControllerStyleAlert];
                UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
                }];

                UIAlertAction *ok = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
                    //===无权限 引导去开启===
                    [self openJurisdiction];
                }];

                // 将UIAlertAction添加到UIAlertController中
                [alertController addAction:cancel];
                [alertController addAction:ok];

                // present显示
                [self presentViewController:alertController animated:YES completion:nil];
            }else{  //===有权限======

                if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {   //相机可用
                    piker.sourceType = UIImagePickerControllerSourceTypeCamera;
                }else{  // 相机不可用
                    [SVProgressHUD showErrorWithStatus:@"相机不可用"];
                    return;
                }

            }

        }

        [self presentViewController:piker animated:YES completion:^{

        }];

    }

    #pragma mark-------去设置界面开启权限----------

    -(void)openJurisdiction{

        NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
        if ([[UIApplication sharedApplication] canOpenURL:url]) {
            [[UIApplication sharedApplication] openURL:url];
        }

    }

    #pragma mark UIImagePickerController回调方法================

    - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { //选取的照片

        //选取的照片
        UIImage *image = info[UIImagePickerControllerEditedImage];
        _tableViewHeaderView.headerV.image = image;
        [self dismissViewControllerAnimated:YES completion:nil];
    }

    - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker { //取消选择
        [self dismissViewControllerAnimated:YES completion:nil];
    }

2 、定位

=======检测是否开启定位======
在info.plist 里面配置

Privacy - Location When In Use Usage Description    App需要使用定位功能
Privacy - Location Always Usage Description     App需要使用定位功能

引入框架

 #import <CoreLocation/CoreLocation.h>  //定位

遵循协议 <CLLocationManagerDelegate>
typedef NS_ENUM(int, CLAuthorizationStatus) {

        //定位服务授权状态是用户没有决定是否使用定位服务
        kCLAuthorizationStatusNotDetermined = 0,

        //定位服务授权状态是受限制的。可能是由于活动限制定位服务,用户不能改变。这个状态可能不是用户拒绝的定位服务
        kCLAuthorizationStatusRestricted,

        //定位服务授权状态已经被用户明确禁止,或者在设置里的定位服务中关闭
        kCLAuthorizationStatusDenied,

       //定位服务授权状态已经被用户允许在任何状态下获取位置信息。包括监测区域、访问区域、或者在有显著的位置变化的时候
        kCLAuthorizationStatusAuthorizedAlways NS_ENUM_AVAILABLE(10_12, 8_0),

       //定位服务授权状态仅被允许在使用应用程序的时候
        kCLAuthorizationStatusAuthorizedWhenInUse NS_ENUM_AVAILABLE(NA, 8_0),

};

【注意】

    //1.
    //判断定位是否开启是判断的整个手机系统的定位是否打开,并不是针对这一应用
    [CLLocationManager locationServicesEnabled]
    //跳转到  整个手机系统的“定位”设置界面
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]];

    //2.
    //跳转至 系统的权限设置界面
    NSURL *settingsURL = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
    [[UIApplication sharedApplication] openURL:settingsURL];

=================使用=================

引入框架 

#import <CoreLocation/CoreLocation.h>  //定位

遵循协议 <CLLocationManagerDelegate>

//当前状态

CLAuthorizationStatus status = [CLLocationManager authorizationStatus];
if ([CLLocationManager locationServicesEnabled] && [CLLocationManager authorizationStatus] != kCLAuthorizationStatusDenied) {  
        //定位开启   }

//全局变量

CLLocationManager * locationManager;

 NSString * currentCity; //当前城市

 NSString *prv; //当前省

-(void)addLocation{   //开始定位

    //判断定位是否开启是判断的整个手机系统的定位是否打开,并不是针对这一应用

    //判断定位功能是否打开

    if ([CLLocationManager locationServicesEnabled]) {

        locationManager = [[CLLocationManager alloc] init];

        locationManager.delegate = self;  //遵循协议

        //精确定位

        locationManager.desiredAccuracy = kCLLocationAccuracyBest;

        [locationManager requestWhenInUseAuthorization];  //使用时定位

        currentCity = [[NSString alloc] init];

        [locationManager startUpdatingLocation];  //开始定位

    }

}

#pragma mark CoreLocation delegate----- 定位----

//定位失败则执行此代理方法

//定位失败弹出提示框,点击"打开定位"按钮,会打开系统的设置,提示打开定位服务

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {

    UIAlertController * alertVC = [UIAlertController alertControllerWithTitle:@"允许\"定位\"提示" message:@"请在设置中打开定位" preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction * ok = [UIAlertAction actionWithTitle:@"打开定位" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

        //打开app定位设置

        NSURL *settingsURL = [NSURL URLWithString:UIApplicationOpenSettingsURLString];

        [[UIApplication sharedApplication] openURL:settingsURL];

    }];

    UIAlertAction * cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

    }];

    [alertVC addAction:cancel];

    [alertVC addAction:ok];

    [self presentViewController:alertVC animated:YES completion:nil];

}

//定位成功

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)locations {

    //

    [locationManager stopUpdatingLocation];

    CLLocation *currentLocation = [locations lastObject];

    CLGeocoder * geoCoder = [[CLGeocoder alloc] init];

    //反编码

    [geoCoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {

        if (placemarks.count > 0) {

            CLPlacemark *placeMark = placemarks[0];

            currentCity = placeMark.locality;

            if (!currentCity) {

                currentCity = @"无法定位当前城市";

            }

            NSLog(@"%@",currentCity); //这就是当前的城市

            NSLog(@"%@",placeMark.name);//具体地址:  xx市xx区xx街道

            //administrativeArea   省

            NSLog(@"%@",placeMark.administrativeArea);

        }

        else if (error == nil && placemarks.count == 0) {

            NSLog(@"No location and error return");

        }

        else if (error) {

            NSLog(@"location error: %@ ",error);

        }

    }];

}

3.、推送

//3.=======检测是否允许消息推送======

#import <UserNotifications/UserNotifications.h>

//====方法一

+ (BOOL)isAllowedNotification {      

     if ([UIDevice isSystemVersioniOS8]) {  // >= ios8
              // system is iOS8          
              UIUserNotificationSettings *setting = [[UIApplication sharedApplication  ] currentUserNotificationSettings];         

              if (UIUserNotificationTypeNone != setting.types) {            

                    return YES;       

               }    

      } else {//iOS7 

              UIRemoteNotificationType type = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];

            if(UIRemoteNotificationTypeNone != type) {           

                   return YES;

              }else

       }    

       return NO;

 }

+ (BOOL)isSystemVersioniOS8 {      

          //check systemVerson of device 

         UIDevice *device = [UIDevice currentDevice]; 

         float sysVersion = [device.systemVersion floatValue];

         if (sysVersion >= 8.0f) {

              return YES;

         }

         return NO;

 }

//====方法二

if ([[UIDevice currentDevice].systemVersion floatValue]>=8.0f) {       

          UIUserNotificationSettings *setting = [[UIApplication sharedApplication] currentUserNotificationSettings];       

        if (UIUserNotificationTypeNone == setting.types) {           

              NSLog(@"推送关闭");        

        }else{            

             NSLog(@"推送打开");       

         }    

}else{       

       UIRemoteNotificationType type = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];       

       if(UIRemoteNotificationTypeNone == type){            

             NSLog(@"推送关闭");       

        }else{            

            NSLog(@"推送打开");        

        }   

 }

// 去设置

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];  

//===方法三

+ (void)isOpenMessageNotificationServiceWithBlock:(ReturnBlock)returnBlock  

{  

    BOOL isOpen = NO;  

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_8_0  

    UIUserNotificationSettings *setting = [[UIApplication sharedApplication] currentUserNotificationSettings];  

    if (setting.types != UIUserNotificationTypeNone) {  

        isOpen = YES;  

    }  

#else  

    UIRemoteNotificationType type = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];  

    if (type != UIRemoteNotificationTypeNone) {  

        isOpen = YES;  

    }  

#endif  

    if (returnBlock) {  

        returnBlock(isOpen);  

    }  

}

//====方法四

+ (void)isOpenMessageNotificationServiceWithBlock:(ReturnBlock)returnBlock  

{  

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0  

    [[UNUserNotificationCenter currentNotificationCenter] getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings *settings) {  

        if (returnBlock) {  

            returnBlock(settings.authorizationStatus == UNAuthorizationStatusAuthorized);  

        }  

    }];  

#elif __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_8_0  

    returnBlock([[UIApplication sharedApplication] isRegisteredForRemoteNotifications]);  

#else  

    UIRemoteNotificationType type = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];  

    if (returnBlock) {  

        returnBlock(type != UIRemoteNotificationTypeNone);  

    }  

#endif  

}

4、通讯录

NSContactsUsageDescription

--->通讯录

5、麦克风

NSMicrophoneUsageDescription -> 麦克风
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,123评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,031评论 2 384
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,723评论 0 345
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,357评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,412评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,760评论 1 289
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,904评论 3 405
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,672评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,118评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,456评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,599评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,264评论 4 328
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,857评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,731评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,956评论 1 264
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,286评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,465评论 2 348

推荐阅读更多精彩内容