3
我正在創建一個應用程序,在該應用程序中,我需要從我的圖像中替換存儲在iphone地址簿中的人員的聯繫人圖像。任何幫助?更改地址簿中某個人的聯繫人圖片
我正在創建一個應用程序,在該應用程序中,我需要從我的圖像中替換存儲在iphone地址簿中的人員的聯繫人圖像。任何幫助?更改地址簿中某個人的聯繫人圖片
UIImage *img = [UIImage imageNamed:@"yourimage.png"];
NSData *dataRef = UIImagePNGRepresentation(img);
ABPersonSetImageData(person, (CFDataRef)dataRef, nil);
對不起,但這不適合我。我在模擬器中測試這個。他們是否需要在此代碼中添加其他內容? –
你必須實現http://developer.apple.com/library/mac/#documentation/UserExperience/Reference/AddressBook/Classes/ABPerson_Class/Reference/Reference.html – PJR
Thnx @PJR我終於解決了我的問題這個線程http://stackoverflow.com/questions/2082845/setting-address-book-image-for-a-contact-doesnt-seem-to-work –