Do you understand these permissions in iOS development?

Do you understand these permissions in iOS development?

Preface

App development should avoid the problem of not opening system permissions. How to display system permissions to users in a more friendly way in the app seems to be something worth thinking about during the development process.

So how to improve the success rate of APP obtaining iOS system permissions? There are several ways:

  • Request permission from the user when the user opens the app;
  • After informing the user that they can get benefits by authorizing the permission, then ask the user for permission;
  • Only request permission from the user when it is absolutely necessary, for example: requesting permission to access the system photo album when the user accesses the photo library;
  • Before displaying the system permission dialog box, first display a custom dialog box to the user. If the user chooses not to allow, no operation is performed by default. If the user chooses to allow, the system dialog box is displayed.

The above situation is often encountered during the development process, and different choices will affect the final user interaction experience. This insight comes from the problem I encountered at work last week: adapting to iOS10, how to obtain application network permissions to manage the display management of system dialog boxes. After I solved this problem, I felt it necessary to summarize the commonly used iOS system permissions for future use.

Permission classification

  • Networking permissions
  • Album permissions
  • Camera and microphone permissions
  • Location Permissions
  • Push permissions
  • Contacts permissions
  • Calendar, memo permissions

Networking permissions

Import the header file @import CoreTelephony;

After the application is started, check whether the application has Internet access permission

  1. CTCellularData *cellularData = [[CTCellularData alloc]init];
  2. cellularData.cellularDataRestrictionDidUpdateNotifier = ^(CTCellularDataRestrictedState state){
  3. //Get the network status
  4. switch (state) {
  5. case kCTCellularDataRestricted:
  6. NSLog(@ "Restricrted" );
  7. break;
  8. case kCTCellularDataNotRestricted:
  9. NSLog(@ "Not Restricted" );
  10. break;
  11. case kCTCellularDataRestrictedStateUnknown:
  12. NSLog(@ "Unknown" );
  13. break;
  14. default :
  15. break;
  16. };
  17. };

Check whether the application has Internet access

  1. CTCellularData *cellularData = [[CTCellularData alloc]init];
  2. CTCellularDataRestrictedState state = cellularData.restrictedState;
  3. switch (state) {
  4. case kCTCellularDataRestricted:
  5. NSLog(@ "Restricrted" );
  6. break;
  7. case kCTCellularDataNotRestricted:
  8. NSLog(@ "Not Restricted" );
  9. break;
  10. case kCTCellularDataRestrictedStateUnknown:
  11. NSLog(@ "Unknown" );
  12. break;
  13. default :
  14. break;
  15. }

Album permissions--before IOS 9.0

Import header file @import AssetsLibrary;

Check if you have album permissions

  1. ALAuthorizationStatus status = [ALAssetsLibrary authorizationStatus];
  2. switch (status) {
  3. case ALAuthorizationStatusAuthorized:
  4. NSLog(@ "Authorized" );
  5. break;
  6. case ALAuthorizationStatusDenied:
  7. NSLog(@ "Denied" );
  8. break;
  9. case ALAuthorizationStatusNotDetermined:
  10. NSLog(@ "not Determined" );
  11. break;
  12. case ALAuthorizationStatusRestricted:
  13. NSLog(@ "Restricted" );
  14. break;
  15.  
  16. default :
  17. break;
  18. }

Album permissions--iOS 8.0 and later

Import header file @import Photos;

Check if you have album permissions

  1. PHAuthorizationStatus photoAuthorStatus = [PHPhotoLibrary authorizationStatus];
  2. switch (photoAuthorStatus) {
  3. case PHAuthorizationStatusAuthorized:
  4. NSLog(@ "Authorized" );
  5. break;
  6. case PHAuthorizationStatusDenied:
  7. NSLog(@ "Denied" );
  8. break;
  9. case PHAuthorizationStatusNotDetermined:
  10. NSLog(@ "not Determined" );
  11. break;
  12. case PHAuthorizationStatusRestricted:
  13. NSLog(@ "Restricted" );
  14. break;
  15. default :
  16. break;
  17. }

![Uploading 144446-b8aca7ba38c5f8c0_695906.png . . .]Get album permissions

  1. [PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {
  2. if (status == PHAuthorizationStatusAuthorized) {
  3. NSLog(@ "Authorized" );
  4. } else {
  5. NSLog(@ "Denied or Restricted" );
  6. }
  7. }];

Camera and microphone permissions

Import header file @import AVFoundation;

Check if you have camera or microphone permissions

  1. AVAuthorizationStatus AVstatus = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo];//Camera permissions
  2. AVAuthorizationStatus AVstatus = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeAudio]; //Microphone permission
  3.  
  4. switch (AVstatus) {
  5. case AVAuthorizationStatusAuthorized:
  6. NSLog(@ "Authorized" );
  7. break;
  8. case AVAuthorizationStatusDenied:
  9. NSLog(@ "Denied" );
  10. break;
  11. case AVAuthorizationStatusNotDetermined:
  12. NSLog(@ "not Determined" );
  13. break;
  14. case AVAuthorizationStatusRestricted:
  15. NSLog(@ "Restricted" );
  16. break;
  17. default :
  18. break;
  19. }

Get camera or microphone permissions

  1. [AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted) {//Camera permissions
  2. if (granted) {
  3. NSLog(@ "Authorized" );
  4. } else {
  5. NSLog(@ "Denied or Restricted" );
  6. }
  7. }];
  8.  
  9. [AVCaptureDevice requestAccessForMediaType:AVMediaTypeAudio completionHandler:^(BOOL granted) {//Microphone permission
  10. if (granted) {
  11. NSLog(@ "Authorized" );
  12. } else {
  13. NSLog(@ "Denied or Restricted" );
  14. }
  15. }];

Location Permissions

Import header file @import CoreLocation;

Due to the change of positioning method after iOS8.0, it needs to be configured in info.plist;

Check whether you have location permission

  1. BOOL isLocation = [CLLocationManager locationServicesEnabled];
  2. if (!isLocation) {
  3. NSLog(@ "not turn on the location" );
  4. }
  5. CLAuthorizationStatus CLstatus = [CLLocationManager authorizationStatus];
  6. switch (CLstatus) {
  7. case kCLAuthorizationStatusAuthorizedAlways:
  8. NSLog(@ "Always Authorized" );
  9. break;
  10. case kCLAuthorizationStatusAuthorizedWhenInUse:
  11. NSLog(@ "AuthorizedWhenInUse" );
  12. break;
  13. case kCLAuthorizationStatusDenied:
  14. NSLog(@ "Denied" );
  15. break;
  16. case kCLAuthorizationStatusNotDetermined:
  17. NSLog(@ "not Determined" );
  18. break;
  19. case kCLAuthorizationStatusRestricted:
  20. NSLog(@ "Restricted" );
  21. break;
  22. default :
  23. break;
  24. }

Get location permission

  1. CLLocationManager *manager = [[CLLocationManager alloc] init];
  2. [manager requestAlwaysAuthorization]; //Always obtain location information
  3. [manager requestWhenInUseAuthorization]; //Get location information when using

Check whether the permissions have changed in the proxy method

  1. - (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status{
  2. switch (status) {
  3. case kCLAuthorizationStatusAuthorizedAlways:
  4. NSLog(@ "Always Authorized" );
  5. break;
  6. case kCLAuthorizationStatusAuthorizedWhenInUse:
  7. NSLog(@ "AuthorizedWhenInUse" );
  8. break;
  9. case kCLAuthorizationStatusDenied:
  10. NSLog(@ "Denied" );
  11. break;
  12. case kCLAuthorizationStatusNotDetermined:
  13. NSLog(@ "not Determined" );
  14. break;
  15. case kCLAuthorizationStatusRestricted:
  16. NSLog(@ "Restricted" );
  17. break;
  18. default :
  19. break;
  20. }
  21.  
  22. }

Push permissions

Check whether you have communication permissions

  1. UIUserNotificationSettings *settings = [[UIApplication sharedApplication] currentUserNotificationSettings];
  2. switch (settings.types) {
  3. case UIUserNotificationTypeNone:
  4. NSLog(@ "None" );
  5. break;
  6. case UIUserNotificationTypeAlert:
  7. NSLog(@ "Alert Notification" );
  8. break;
  9. case UIUserNotificationTypeBadge:
  10. NSLog(@ "Badge Notification" );
  11. break;
  12. case UIUserNotificationTypeSound:
  13. NSLog(@ "sound Notification'" );
  14. break;
  15.  
  16. default :
  17. break;
  18. }

Get push permissions

  1. UIUserNotificationSettings *setting = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge categories:nil];
  2. [[UIApplication sharedApplication] registerUserNotificationSettings:setting];

Contacts permissions

Before iOS 9.0

Import header file @import AddressBook;

Check whether you have the address book permission

  1. ABAuthorizationStatus ABstatus = ABAddressBookGetAuthorizationStatus();
  2. switch (ABstatus) {
  3. case kABAuthorizationStatusAuthorized:
  4. NSLog(@ "Authorized" );
  5. break;
  6. case kABAuthorizationStatusDenied:
  7. NSLog(@ "Denied'" );
  8. break;
  9. case kABAuthorizationStatusNotDetermined:
  10. NSLog(@ "not Determined" );
  11. break;
  12. case kABAuthorizationStatusRestricted:
  13. NSLog(@ "Restricted" );
  14. break;
  15. default :
  16. break;
  17. }

Get address book permissions

  1. ABAddressBookRef addressBook = ABAddressBookCreateWithOptions( NULL , NULL );
  2. ABAddressBookRequestAccessWithCompletion(addressBook, ^(bool granted, CFErrorRef error) {
  3. if (granted) {
  4. NSLog(@ "Authorized" );
  5. CFRelease(addressBook);
  6. } else {
  7. NSLog(@ "Denied or Restricted" );
  8. }
  9. });

iOS 9.0 and later

Import header file @import Contacts;

Check whether you have the address book permission

  1. CNAuthorizationStatus status = [CNContactStore authorizationStatusForEntityType:CNEntityTypeContacts];
  2. switch (status) {
  3. case CNAuthorizationStatusAuthorized:
  4. {
  5. NSLog(@ "Authorized:" );
  6. }
  7. break;
  8. case CNAuthorizationStatusDenied:{
  9. NSLog(@ "Denied" );
  10. }
  11. break;
  12. case CNAuthorizationStatusRestricted:{
  13. NSLog(@ "Restricted" );
  14. }
  15. break;
  16. case CNAuthorizationStatusNotDetermined:{
  17. NSLog(@ "NotDetermined" );
  18. }
  19. break;
  20.  
  21. }

Get address book permissions

  1. CNContactStore *contactStore = [[CNContactStore alloc] init];
  2. [contactStore requestAccessForEntityType:CNEntityTypeContacts completionHandler:^(BOOL granted, NSError * _Nullable error) {
  3. if (granted) {
  4.  
  5. NSLog(@ "Authorized" );
  6.  
  7. } else {
  8.  
  9. NSLog(@ "Denied or Restricted" );
  10. }
  11. }];

Calendar, memo permissions

Import header file

Check if you have calendar or memo permissions

  1. typedef NS_ENUM(NSUInteger, EKEntityType) {
  2. EKEntityTypeEvent, //calendar
  3. EKEntityTypeReminder //Reminder
  4. };
  1. EKAuthorizationStatus EKstatus = [EKEventStore authorizationStatusForEntityType:EKEntityTypeEvent];
  2. switch (EKstatus) {
  3. case EKAuthorizationStatusAuthorized:
  4. NSLog(@ "Authorized" );
  5. break;
  6. case EKAuthorizationStatusDenied:
  7. NSLog(@ "Denied'" );
  8. break;
  9. case EKAuthorizationStatusNotDetermined:
  10. NSLog(@ "not Determined" );
  11. break;
  12. case EKAuthorizationStatusRestricted:
  13. NSLog(@ "Restricted" );
  14. break;
  15. default :
  16. break;
  17. }

Get calendar or memo permissions

  1. EKEventStore *store = [[EKEventStore alloc]init];
  2. [store requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError * _Nullable error) {
  3. if (granted) {
  4. NSLog(@ "Authorized" );
  5. } else {
  6. NSLog(@ "Denied or Restricted" );
  7. }
  8. }];

Final note

There are methods for obtaining permissions, which are mostly used when users operate applications for the first time. After iOS 8.0, these settings are integrated together, and the corresponding permissions can be turned on or off. All permissions can be turned on by the following methods:

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

The above permissions are mostly frequently used permissions, of course, not comprehensive. If you need other permissions, you can comment below and I will add them in time.

I hope this article can bring some convenience to your development.

<<:  Google will charge Android phone makers up to $40 per device

>>:  Regarding the knowledge point of adaptation, this article will help you master it thoroughly!

Recommend

Digital RMB is so popular! Alipay can’t hold back

[[395030]] With the popularity of digital RMB har...

A guide to traffic channels for Douyin live streaming rooms!

When it comes to Tik Tok live streaming , the mos...

Autolayout constraint animation (what a cute trick!)

Original article: Animating Autolayout Constraint...

The future of virtual reality: multi-sensory interaction technology

Virtual reality provides us with a virtual world ...

iOS Native and JavaScript Interaction

When it comes to the interaction between Native a...

Foreign media: Eight major Siri improvements we expect to see in iOS 12

Previously, Apple has officially announced that i...

User Operations: 5 Steps to User Growth

I've been reading some books on growth recent...

Zhihu product analysis report!

Preface As Internet traffic has peaked, new traff...

10 Trend Predictions for Influencers and Influencers in 2020

2019 was the year when major internet celebrities...

E-commerce platforms create their own private domain traffic?

Private domain traffic is not a new term, nor did...