我可以看到帖子,它从地址簿中获取信息,但我无法获得任何有关如何从iPhone的地址簿获取给定手机的Twitter帐户详细信息的参考
请告诉我,如何获取该信息
答案 0 :(得分:0)
这是可能的。 尝试使用
中的以下常量之一预定义常量用于标识社交网络服务。您可以使用这些常量或任何其他字符串。
const CFStringRef kABPersonSocialProfileServiceTwitter;
const CFStringRef kABPersonSocialProfileServiceGameCenter;
const CFStringRef kABPersonSocialProfileServiceFacebook;
const CFStringRef kABPersonSocialProfileServiceMyspace;
const CFStringRef kABPersonSocialProfileServiceLinkedIn;
const CFStringRef kABPersonSocialProfileServiceFlickr;
在iOS 5.0及更高版本中可用。
有这样的事情:
ABRecordCopyValue(person, kABPersonSocialProfileServiceTwitter);