简体   繁体   中英

iOS How to get contact image full screen

The AddressBook framework provides ABPersonCopyImageData for getting the contact image for each address book entry. However this API returns original image size which is way too big to display on screen. How does one get a full screen image? Below is the code I am using

             NSData *contactImageData = (NSData*)ABPersonCopyImageData(personRef);
             UIImage *img = [[UIImage alloc] initWithData:contactImageData];

             self.backgroundImage.image = img; 
             [img release];
             [contactImageData release];

where self.backgroundImage is a UIImageView set up in IB with frame rectangle 320x460

Thanks

Just setup your UIImageView frame to be full screen. Then whatever picture you will display in it should be full screen. It will automatically get downsized for you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM