0

我正在尝试从通讯录中的联系人获取 Twitter 用户名,但我无法做到

我正在使用我发现“谷歌搜索”的这段代码:

- (NSString*)getTwitterUsernameFromRecord:(ABRecordRef)record {
    NSString * twitterUsername = nil;

    ABMultiValueRef socials = ABRecordCopyValue(record, kABPersonSocialProfileProperty);

    if (!socials) {
        return nil;
    }

    CFIndex socialsCount = ABMultiValueGetCount(socials);

    for (int k=0 ; k<socialsCount ; k++) {
        CFDictionaryRef socialValue = ABMultiValueCopyValueAtIndex(socials, k);
        if(CFStringCompare( CFDictionaryGetValue(socialValue, kABPersonSocialProfileServiceKey), kABPersonSocialProfileServiceTwitter, 0)==kCFCompareEqualTo) {
            twitterUsername = (NSString*) CFDictionaryGetValue(socialValue, kABPersonSocialProfileUsernameKey);
        }
        CFRelease(socialValue);

        if(twitterUsername)
            break;
    }
    CFRelease(socials);

    return twitterUsername;
}

我已经使用 if 来验证“socials”数组是否为零,因为在尝试获取“socials”数组计数时出现异常。

我已经在模拟器和带有联系人的真实设备中尝试了此代码,其中填充了 twitter 信息,但我得到的“社交”数组始终为零。我从记录中得到了错误的财产?有什么帮助吗?

先感谢您

4

1 回答 1

1

除了需要桥接 twitter 用户名(这只是 ARC 的事情)之外,您的功能几乎按原样对我有用。你是如何访问通讯录的?

当我使用此代码调用您的函数时:

ABAddressBookRef addressBook = ABAddressBookCreate();
CFArrayRef people = ABAddressBookCopyArrayOfAllPeople(addressBook);

CFIndex contactCount = ABAddressBookGetPersonCount(addressBook);

for( int i = 0; i<contactCount; i++ )
{
    ABRecordRef ref = CFArrayGetValueAtIndex(people, i);
    NSString *twitterHandle = [self getTwitterUsernameFromRecord:ref];
    if (twitterHandle) {
        NSLog(@"record %d has twitter name %@", i, twitterHandle);
    }
}

我得到这个控制台输出:

2012-06-26 12:09:40.864 AddressBookTest[2246:707] record 57 has twitter name alexshepard
于 2012-06-26T19:14:26.653 回答