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.

I want to change the image in image view on button click but it does not changing. I am using JPG image to load in image View

  - (IBAction) changeImage:(id)sender {

    UIButton *tappedButton = (UIButton*) sender;
     NSInteger selectedIndex = [tappedButton tag];


   if (selectedIndex==0) {

   UIImage *modelimage = [UIImage imageNamed:@"compositone.jpg"];


   modelImagewView.image=modelimage; 


    } 

   else {




      UIImage *modelimage = [UIImage imageNamed:@"composittwo.jpg"];


     modelImagewView.image=modelimage; 



    }
     }
share|improve this question
It's an storyboard project? Are you sure you have connect correctly the IBAction? – Δ developer Jan 28 '12 at 7:24

1 Answer

up vote 1 down vote accepted

Try this format - modelImagewView.image = [UIImage imageNamed:@"composittwo.jpg"];

Also, make sure you have set tag numbers properly so that selectedIndex is not always 0. At the same time check if you have linked this IBAction to the appropriate button.

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.