我正在使用此代码请求访问联系人 UI:
let store = CNContactStore()
store.requestAccess(for: .contacts) { (granted, error) in
if let error = error {
print(error)
}
if granted {
completionHandler(.granted)
} else {
completionHandler(.denied)
}
}
但是我想在弹出的警报中显示一条自定义消息,详细说明为什么我需要访问用户的联系人。我怎样才能做到这一点?