iOS系统权限管理

iOS系统权限管理主要有以下权限:
网络、相册、推送、相机以及麦克风、通讯录、定位;
https://www.jianshu.com/p/2d3ef8b72986

获取后台应用刷新权限:

[UIApplication sharedApplication].backgroundRefreshStatus

有三种状态:

typedef NS_ENUM(NSInteger, UIBackgroundRefreshStatus) {
    UIBackgroundRefreshStatusRestricted, 
    UIBackgroundRefreshStatusDenied,     
    UIBackgroundRefreshStatusAvailable   
} API_AVAILABLE(ios(7.0), tvos(11.0));

你可能感兴趣的:(iOS系统权限管理)