Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
you can increment a counter on each click and based on that you can show images on uiimageview – Dalee Davis Dec 27 '12 at 10:34

1 Answer

up vote 2 down vote accepted

try like this,

in .h

int a;

in .m

-(void)loadView  {
    a=0;
}

-(void)alertshow
{
   if((a%4)==0)
       rightongbanner.image=[UIImage  imageNamed:@"correct1.png"];
   if((a%4)==1)
       rightongbanner.image=[UIImage  imageNamed:@"correct2.png"];
   if((a%4)==2)
       rightongbanner.image=[UIImage  imageNamed:@"correct3.png"];
   if((a%4)==3)
       rightongbanner.image=[UIImage  imageNamed:@"correct4.png"];

  timer = [NSTimer scheduledTimerWithTimeInterval:2.5 target:self selector:@selector(removeImageView) userInfo:nil repeats:NO];
     [aplayer play];
  a++;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.