I have the following code but doesnt work
[self performSelector:@selector([A1 setImage:[UIImage imageNamed:@"m1.10002.png"] forState:UIControlStateNormal])
withObject:A1 afterDelay:0.1];
How can I execute the following statement after a certain time
[A1 setImage:[UIImage imageNamed:[NSString stringWithFormat:@"m1.a0009.png"]] forState:UIControlStateNormal];
I would like to set a series of 5 images to execute a small animation effect. but am not sure how it is done.
Thanks