I am using about 20 UIImageView of small airplane images (50x50 pixels) doing simple animation on the iPhone screen. The animation is done by shifting the UIImageView center property at timer interval.
[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(timerFired:) userInfo:nil repeats:YES]
What is the best practice: create one NSTimer and loop the 20 UIImageView to set the center property when timer fired? Or should I just create one NSTimer per UIImageView object? Is NSTimer resource expensive? Thanks