i'm new on Objective-C programming and i'm having the typical memory problems. I must do an app based on navigation controller and when passing few views (using push view controller), load an animation of 100 images. In the simulator works well, but on the phone not... I open up different animations and then it closes. I'm using arc to avoid that, but it seems not to be working. I've also tried to disable arc and release the UIImageView manually but it crashes even quickly. Here's an example of one of that views:
//.h
@interface Gegant_nou : UIViewController {
IBOutlet UIImageView *ImageViewGegant;
}
@property (nonatomic, strong) UIImageView* ImageViewGegant;
//.m
- (void)viewDidLoad {
[super viewDidLoad];
UIBarButtonItem *rigthButton = [[UIBarButtonItem alloc] initWithTitle:@"Detalls" style:UIBarButtonItemStyleBordered target:self action:@selector(canviarDetalls)];
self.navigationItem.rightBarButtonItem = rigthButton;
[rigthButton release];
ImageViewGegant.animationImages =@
[[UIImage imageNamed:@"0001.png"],
[UIImage imageNamed:@"0002.png"],
. load all the images
.
[UIImage imageNamed:@"0099.png"],
[UIImage imageNamed:@"0100.png"]];
ImageViewGegant.animationDuration = 4;
ImageViewGegant.animationRepeatCount = 0;
[ImageViewGegant startAnimating];
[self.view addSubview:ImageViewGegant];
self.title = @"Gegant nou";
[ImageViewGegant release];
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)didReceiveMemoryWarning{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload{
[super viewDidUnload];
[ImageViewGegant release];
}
Any idea of why happens? Thank you for helping me!
-viewDidUnloadis deprecated under iOS6 you should avoid to use it (it will be never called). 3. why don't you init your image array using loop? – holex Sep 29 '12 at 17:03-didReceiveMemoryWarningmethod for releasing everything what you won't need any more. – holex Sep 29 '12 at 23:28