i have an UIImageView, i was set the frame into x = 0, y = 0, width = 404, andh height = 712. In my project, i need to change image in uiimageview dinamically.
i use this code to change the image :
self.imgeView.image = [UIImage imageNamed:@"setting-image.png"];
The problem is, when the *.png image size is smaller than uiimageview frame, the image is stretching. I dont want to make it stretch. Is there any way to do that? Somebody, help me please...
Thank You