The task is to make an animation like this: http://www.subaru.jp/legacy/b4/index2.html for iPad2. That is, the user can slide left and right and the object visually rotates around its vertical axis. The simplest solution is as follows: fill the array with images for animation and output them by tach in UIImage or CCSprite in cocos2d. Pictures will be 1024x768 and preferably 15-20 frames per second to keep the animation smooth. The question is: is this the right decision in terms of performance, is it possible to achieve smoothness under such conditions? What is the limit of this method? And if it is too low, how else can the problem be solved?