问题:我在ios应用程序上看到此链接至pratice联系人。它在那里显示了很多UI,但是我看不到任何代码来实现。如果看到的话,请告诉我
https://www.oreilly.com/library/view/ios-9-swift/9781491936689/ch04.html#recipe-create-contact
我只看到关于GUI创建的东西。
创建一个单视图应用,然后首先请求访问该用户设备上的联系人的权限:
switch CNContactStore.authorizationStatusForEntityType(.Contacts){
case .Authorized:
createContact()
case .NotDetermined:
store.requestAccessForEntityType(.Contacts){succeeded, err in
guard err == nil && succeeded else{
return
}
self.createContact()
}
default:
print("Not handled")
}