iOS Swift CNContactPickerViewController search contact and add to selection

后端 未结 4 1683
星月不相逢
星月不相逢 2020-12-31 04:02

I am using iOS 9 and Swift 2.2

I have implemented iOS inbuilt CNContactPickerViewController using CNContactPickerDelegate to get the cont

4条回答
  •  盖世英雄少女心
    2020-12-31 04:49

    The search results seem to be working in single selection mode only, so make sure you implement

    func contactPicker(CNContactPickerViewController, didSelect: CNContact)
    

    only, but not

    func contactPicker(CNContactPickerViewController, didSelect: [CNContact])
    

    If you implement both, the version wich takes only one CNContact as argument is ignored and the multi selection mode is used instead.

提交回复
热议问题