Hi Smasher,
Thanks for the response. Yeap the memory increases with every loop. Do I need to release after every image? When does dealloc get called? I thought it was when the app exits.
I am declaring the following within my header:
Code:
@interface TestView : UIView
{
UIImageView *MyImage[50];
}
@end