6/29 聯絡人collection有問題,花了整天找到用tableview的方法 let contactStore = CNContactStore() //var results: [CNContact] = [] do { try contactStore.enumerateContacts(with: CNContactFetchRequest(keysToFetch: [CNContactGivenNameKey as CNKeyDescriptor, CNContactFamilyNameKey as CNKeyDescriptor, CNContactMiddleNameKey as CNKeyDescriptor, CNContactEmailAddressesKey as CNKeyDescriptor,CNContactPhoneNumbersKey as CNKeyDescriptor])) { (contact, cursor) -> Void in self.results.append(contact) } } catch{ print("Handle the error please") } 6/28 畫完launch Screen算是開始先做一些功能 首先先從聯絡人清單下手,要拉出來顯示在自己的元件上目前還有問題 使用的framework...