I saw that app on the store
My South Africa Essentials per iPhone, iPod touch e iPad nell'iTunes App Store.
I wanna try to build a menu similar to the one on the main screen of this app.
I have an array of images
Code:
NSString *image1 = [[NSBundle mainBundle] pathForResource:@"656709" ofType:@"gif"];
UIImage *imgCV = [UIImage imageWithContentsOfFile:image2];
[imageArray addObject:imgCV];
then i populate the table with the method cellForRowAtIndexPath and i set the cell image in this way:
Code:
cell.image = [imageArray objectAtIndex:indexPath.row];
I can't understand how to animate the elements...
there is a documentation or some examples?
thanks