我可以在我的应用程序中获取和使用联系人图片吗?

时间:2010-10-06 16:11:31

标签: iphone addressbook

我正在使用地址簿框架从我的iphone电话簿中获取所有联系人。

有没有办法获取(和使用)联系人图片?

谢谢。

托马斯

3 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)

是的,你可以......来自地址簿API的这段代码

array = [peoplePicker selectedRecords]; 
NSAssert([array count] == 1, @"Picker returned multiple selected records"); 

ABPerson *person = [array objectAtIndex:0];
personImage = [[NSImage alloc] initWithData:[person imageData]]; 
personFirstName = [person valueForProperty:kABFirstNameProperty], personLastName = [person valueForProperty:kABLastNameProperty];
/* ...do something with the image and name... */ [personImage release];

答案 2 :(得分:0)

Here is a nice article如何根据iOS版本(4.1之前和当前首选方法)拉取图片