I'm using CNContactPickerViewController with properties for phone number selection:
picker.displayedPropertyKeys = [CNContactPhoneNumbersKey]
picker.predicateForEnablingContact = NSPredicate(format: "phoneNumbers.@count > 0")
picker.predicateForSelectionOfContact = NSPredicate(format: "phoneNumbers.@count == 1")
picker.predicateForSelectionOfProperty = NSPredicate(format: "key == phoneNumber")
But it unable to select contact form "Siri found in apps" section. How can I enable that?