提前致谢!
请参阅文档:http://developer.apple.com/library/ios/#documentation/AddressBook/Reference/ABPersonRef_iPhoneOS/Reference/reference.html#//apple_ref/doc/uid/TP40007210
相关功能:
ABPersonHasImageData(person) ABPersonCopyImageDataWithFormat(person)
ABPersonCopyImageDataWithFormat返回一个CFDataRef.使用此(ARC)NSData * data =(__bridge_transfer NSData *)cfData将其转换为NSData;
然后可以使用[UIImage imageWithData:data]创建图像