Quote:
Originally Posted by PhoneyDeveloper
What are you doing with the UIImage that's returned by this method?
|
Hi Phoney, thanks for writing. Ultimately, I'm saving it to an sqlite database. The image is taken from the camera, reduced in size, and then saved to sqlite. However, if I change resizedImage to something like this, I don't have the memory problem:
UIImage* resizedImage(UIImage *inImage, CGRect thumbRect)
{
return inImage;
}
Could it be something to do with the database?
Thanks,
Tom