I am able to set a new contact's thumbnail image in the iPhone address book, however, the phone does not display a full screen version when that contact calls my phone. Instead, it only displays the thumbnail version on top of the screen, with my phone's screen saver in the background. Is there something special that needs to be done that I am forgetting (see code snippet below)?
Also, I did find a previous post that indicated no previous image could be saved for a contact, yet this still does not fix my problem...
Thanks in Advance!
UIImage *profileImage = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:picImageUrl]]];
NSData *profileImageDataRef = UIImagePNGRepresentation(profileImage);
ABPersonSetImageData(newPerson, (__bridge CFDataRef)profileImageDataRef, nil);
Try cropping the image to the full size with the following code
and then save it