Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
and the warning is ... – Lou Franco Oct 26 '10 at 12:00
I'm guessing the warning is UIImage might not responsd to selector _imageScaledToSize:interpolationQuality: - try not using private API calls? – deanWombourne Oct 26 '10 at 12:11
'UIImage' may not respond to '-_imageScaledToSize:interpolationQuality:' – Swapna Oct 26 '10 at 12:12

1 Answer

up vote 1 down vote accepted

You could look at this blog post :

http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/

At the end he's attached the resizing code as a category on UIImage.

share|improve this answer
Thanks for the link – Swapna Oct 26 '10 at 12:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.