I have an application which has around 800 images. Is there any way to re size the images to specific size. I have tried using the following code:
UIImage *image = [[UIImage imageNamed:recipeObj.recipeImage]
_imageScaledToSize:CGSizeMake(64.0f, 61.0f)
interpolationQuality:1];
cell.imageView.image = image;
This code snippet gives me a warning. Is there any other alternative way for resizing images?