本文介绍了从iPhone地址簿获取一个人的图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从iPhone地址簿中获取一个人的图像?
How do you get a person's image from an iPhone address book?
推荐答案
你可以这样做...... 。
You can do it like this....
NSData *imgData = (NSData *)ABPersonCopyImageData(person);
UIImage *img = [UIImage imageWithData:imgData];
其中 person
的类型为 ABRecordRef
。现在,由于CFData和NSData是免费桥接,您只需键入cast CFData
到 NSData
并获取图像
where person
is of type ABRecordRef
. Now, as CFData and NSData are toll-free bridged, you can simply type cast CFData
to NSData
and get the image
希望这会有所帮助。
这篇关于从iPhone地址簿获取一个人的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!