变更记录

序号 录入时间 录入人 备注
1 2015-03-18 Alfred Jiang -
2 2015-12-22 Alfred Jiang -

方案名称

iOS 系统 - 使用 ClusterPrePermissions 更加友好的提示授权操作

关键字

iOS 系统 \ 系统权限 \ 授权 \ 通讯录 \ 相册 \ 地址

需求场景

  1. 需要用户授权通讯录、相册、地址等信息时提前增加提示

参考链接

  1. GitHub - ClusterPrePermissions

详细内容

使用方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
ClusterPrePermissions *permissions = [ClusterPrePermissions sharedPermissions];
[permissions showPhotoPermissionsWithTitle:@"Access your photos?"
message:@"Your message here"
denyButtonTitle:@"Not Now"
grantButtonTitle:@"Give Access"
completionHandler:^(BOOL hasPermission,
ClusterDialogResult userDialogResult,
ClusterDialogResult systemDialogResult) {
if (hasPermission) {
// Continue with your code here
} else {
// Handle access not being available
}
}];

效果图

(无)

备注

(无)