iOS系统权限管理

2019-02-13  本文已影响0人  重望沐

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));
上一篇 下一篇

猜你喜欢

热点阅读