问题描述: 在iOS 12.4.1 (iPhone XR)中无法使用CNContactStore获取联系人,即使在13测试版或低于12.4.1的版本中也能正常工作。
解决方案:
import Contacts
let store = CNContactStore()
store.requestAccess(for: .contacts) { (granted, error) in
if granted {
// 权限已授予,可以继续获取联系人
} else {
// 权限未授予,需要提示用户授权
}
}
注意事项:
领取专属 10元无门槛券
手把手带您无忧上云