I am new to this field. I have used 8 UIImageView inside the UIVIEW.
@property(weak,nonatomic)IBOutlet UIImageView *b1;
@property(weak,nonatomic)IBOutlet UIImageView *b2;
@property(weak,nonatomic)IBOutlet UIImageView *b3;
@property(weak,nonatomic)IBOutlet UIImageView *b4;
@property(weak,nonatomic)IBOutlet UIImageView *Bb1;
@property(weak,nonatomic)IBOutlet UIImageView *Bb2;
@property(weak,nonatomic)IBOutlet UIImageView *Bb3;
@property(weak,nonatomic)IBOutlet UIImageView *Bb4;
@property(weak,nonatomic)IBOutlet UIView *VVV;
I NEED : WHEN THE UIViewController LOAD first 4 UIImageView (b1,b2,b3,b4 images)should display which is already set .then after 5s this 4 UIImageView should flip (for b1 img it should display the Bb1 img, same case for b2 img after flip it should display Bb2 img, same for b3-Bb3,b4-Bb4 img)then after flip for 5s it should display the b1,b2,b3,b4 img in UIImageView.
IMP:I NEED WHILE
viewDidLoad
not in button action .