I have a custom UIView
called ActivityDetailView
that I instantiate and then add to a scrollview within a parent view controller. When this custom
You are probably facing a problem with cache.
If you are using a lot of images maybe a good option is to remove this images from the xib and add it using code. Or if you load the images using [UIImage imageNamed:@""]
But use something like that:
NSData* dataImg = [NSData dataWithContentsOfFile:@"yourfile.png"];
UIImage* img = [UIImage imageWithData:dataImg];
To better help I need to know how you start your tables and also the others features.