/ Published in: Objective C

Populate a UIImageView with an image taken from a URL.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
UIImage* image = [[UIImage alloc] initWithData:imageData]; [imageView setImage:image]; [imageData release]; [image release];
Comments
