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 am new to iOS development. My current task is to change image on click of a button. The screen will consists of 4-5 images and on click of a button one of the 4-5 images should be change. Please guide me on how to proceed.

Thanks in advance.

Regards, Bhaskar M.

share|improve this question
1  
Create a view, add imageviews, add button, implement the image change. if you don't get it work, post the code here and we will help you – jimpic Nov 22 '12 at 10:22

closed as not a real question by Vladimir, djromero, Midhun MP, Janak Nirmal, George Stocker Nov 23 '12 at 4:42

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

You should firstly make a method that will fire when you push a button. And then make something like this

-(void) buttonPushed{
   //MyImageView will be the one you need to change
   //you can choose it randomly. It's up to you
   [MyImageView setImage:[UIImage imageNamed:@"qwe.jpg"]];
}
share|improve this answer

Create an array of images and imageViews.

On each button click, generate a random number. (if you want random image to be changed).

Replace that image with the array[random number].

share|improve this answer

in your .h file declare an array say imageArray.

in .m file viewDidLoad use following:

- (void)viewDidLoad
{
    [super viewDidLoad];

imageArray=[[NSMutableArray alloc]init];

[imageArray addObject:@"mage1.png"];
[imageArray addObject:@"mage2.png"];
[imageArray addObject:@"mage3.png"];
[imageArray addObject:@"mage4.png"];
[imageArray addObject:@"mage5.png"];
[imageArray addObject:@"mage6.png"];
[imageArray addObject:@"mage7.png"];

} 

in your Button Action use following

-(IBAction) buttonPushed:(id)sender{

int x = arc4random() % 7;
   //MyImageView will be the one you need to change
   //you can choose it randomly. It's up to you
   [MyImageView setImage:[UIImage imageNamed:[NSString stringwithformat:@"%@",[imageArray objectAtIndex:x]]]];

//[MyImageView setImage:[UIImage imageNamed:[imageArray objectAtIndex:x]]];

}
share|improve this answer

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