We are developing an application that presents an animation of 100 frames. The animation is a loop and the frames react to the user touch. Moreover, to maintain responsiveness we have to load all the images in the memory.
We tried to develop the application using and array of UIImage and resetting them to a view but the memory footprint was too big 42MB. Therefore, we tried to use Quartz, and we solved the memory problems (now its 12MB) but the cpu load often peeks a 100%. We though that quartz should have been faster than the UI class.
As we are total newbies to cocoa it would be terrific if somebody could give to us some insights in the topic!
Thanks
We tried to develop the application using and array of UIImage and resetting them to a view but the memory footprint was too big 42MB. Therefore, we tried to use Quartz, and we solved the memory problems (now its 12MB) but the cpu load often peeks a 100%. We though that quartz should have been faster than the UI class.
As we are total newbies to cocoa it would be terrific if somebody could give to us some insights in the topic!
Thanks