Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
imageNamed is advertised as caching the images. That said, if IOS thinks your app is eating too much memory it could delete them, and the next time you asked for an imageNamed it would hit the file system again. View did load is a great place to initialize stuff. That said, do you need to pull in every image you may ever need then - or can you pull in subsets as users modify their behavior? This is a design issue not a technical one! Goodluck. – David H Aug 10 '12 at 1:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.