问题描述
有没有人有一个如何从iOS 4 +中的ABAddressBook获取特定ABSource的示例?
Does anyone have an example of how to obtain a specific ABSource from the ABAddressBook in iOS 4+?
推荐答案
iOS 4 +提供新的API,允许用户从ABAddressBook中选择特定的ABSource。这可以用作一些操作,例如,在某些来源(即Exchange)中不支持创建ABGroup。
iOS 4+ provides new API that allows one to select a specific ABSource from the ABAddressBook. This may be useful as some operations, e.g. creating an ABGroup, are not supported in some sources (i.e. Exchange).
并非所有源类型都支持组,更显着的是,Exchange对组没有任何了解。 -
"Not all source types support groups, more conspicuously, Exchange does not know anything about groups." - http://flavors.me/volonbolon#1a5/tumblr
附加功能利用新API获取可用于调用ABGroupCreateInSource()的特定类型的源。
Attached are functions that leverage the new API to obtain sources of specific types which may be used in calls to ABGroupCreateInSource().
#define CFRELEASE_AND_NIL(x) CFRelease(x); x=nil;
ABRecordRef sourceWithType (ABSourceType mySourceType)
{
ABAddressBookRef addressBook = ABAddressBookCreate();
CFArrayRef sources = ABAddressBookCopyArrayOfAllSources(addressBook);
CFIndex sourceCount = CFArrayGetCount(sources);
ABRecordRef resultSource = NULL;
for (CFIndex i = 0 ; i < sourceCount; i++) {
ABRecordRef currentSource = CFArrayGetValueAtIndex(sources, i);
CFTypeRef sourceType = ABRecordCopyValue(currentSource, kABSourceTypeProperty);
BOOL isMatch = mySourceType == [(NSNumber *)sourceType intValue];
CFRELEASE_AND_NIL(sourceType);
if (isMatch) {
resultSource = currentSource;
break;
}
}
CFRELEASE_AND_NIL(addressBook);
CFRELEASE_AND_NIL(sources);
return resultSource;
}
ABRecordRef localSource()
{
return sourceWithType(kABSourceTypeLocal);
}
ABRecordRef exchangeSource()
{
return sourceWithType(kABSourceTypeExchange);
}
ABRecordRef mobileMeSource()
{
return sourceWithType(kABSourceTypeMobileMe);
}
这篇关于从iOS 4+中的ABAddressBook获取特定的ABSource的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!