Tagged Questions
0
votes
1answer
134 views
App is taking too much memory until a crash ! (iPhone)
I am quite beginner in development and I'm making an application that have about 150 ViewControllers ! Each one have a UIImageView.
I've been doing a bit of testing, and after a use the app for a ...
1
vote
2answers
1k views
How to clean memory after UIImageView animation
Here is my code:
Header:
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController {
UIImageView *imageView;
NSMutableArray *arrayWithImages;
}
- ...