In my application , im having 4 images ,i want to show diffrent images on each click.How to show different images on each click?Here my code for single image
-(void)removeImageView
{
rightongbanner.image=Nil;
}
-(void)alertshow
{
rightongbanner.image=[UIImage imageNamed:@"correct.png"];
timer = [NSTimer scheduledTimerWithTimeInterval:2.5 target:self selector:@selector(removeImageView) userInfo:nil repeats:NO];
[aplayer play];
}
In rightongbanner.image i want to show img1 first click and img2 on second click?pls help me to solve