gal

iOS - How to search a “searchable” ABSource, with ABSourceType | kABSourceTypeSearchableMask

烂漫一生 提交于 2019-12-03 16:23:30
问题 Has anyone ever succeeded in searching for names in an Exchange GAL linked to an iOS device, using ABAddressBook framework, or otherwise? I've managed to get all the names from the contacts stored on the device - that bit's easy - but it doesn't include names from the Exchange GAL. I've also managed to get the ABSource for the GAL. It's type is: kABSourceTypeExchangeGAL = kABSourceTypeExchange | kABSourceTypeSearchableMask This suggests the source is searchable, given that the

iOS - How to search a “searchable” ABSource, with ABSourceType | kABSourceTypeSearchableMask

自作多情 提交于 2019-12-03 05:50:30
Has anyone ever succeeded in searching for names in an Exchange GAL linked to an iOS device, using ABAddressBook framework, or otherwise? I've managed to get all the names from the contacts stored on the device - that bit's easy - but it doesn't include names from the Exchange GAL. I've also managed to get the ABSource for the GAL. It's type is: kABSourceTypeExchangeGAL = kABSourceTypeExchange | kABSourceTypeSearchableMask This suggests the source is searchable, given that the kABSourceTypeSearchableMask bit is set ( kABSourceTypeSearchableMask = 0x01000000 ), but how to search it is anyone's