我使用此代码请求访问联系人用户界面:
let store = CNContactStore()
store.requestAccess(for: .contacts) { (granted, error) in
if let error = error {
print(error)
}
if granted {
completionHandler(.granted)
} else {
completionHandler(.denied)
}
}
但我想在显示的提醒弹出窗口中显示自定义消息,详细说明我需要访问用户联系人的原因。我怎么能这样做?
答案 0 :(得分:1)
转到您的Info.plist
文件,添加以下密钥NSContactsUsageDescription
,然后在值字段中添加自定义提醒消息。