I am trying to use several animations in my iphone app and havning some memory problems in xcode.
I used the animation code found here.
http://www.youtube.com/watch?v=5AbdZ-8JBZQ
To play them. I do need them to play when the page loads so I think I am right to put in view did load. But I have several different animations that can play so not sure if I would still have it in viewDidLoad.
I tried creating an array of images and saving in a plist but that isn't playing the animation.
I am using the imageNamed feature but the memory doesn't seem to be releasing. I tried changing to imageWithcontentsOfFile and the memory does release.
What I want to know is, is putting multiple arrays to choose from in the viewDidLoad method the best place to do it? And if not how should I be doing it?
And should I be using imageNamed or imageWithContentsOfFile and what is the best way to create the array for this?
I am not getting any memory warnings or leaks from this but my app is crashing without saying anything as to why.