Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

[HELP] with Segue?

when i use this code nothing happens why?

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{ if ([[segue identifier]isEqualToString:@"dc"]) { secondViewController *second = (secondViewController *) [segue destinationViewController]; [second.pepsiLogoFTW setImage:img1];

}

}

-(void)image{

self.img = [UIImage imageNamed:@"icon"]; [self.pepsiLogo setImage:img];

self.img1 = [UIImage imageNamed:@"pepsiNormal"]; [self.pepsiLogo1 setImage:img1]; }

plz help im trying to get when a certain button is pressed i want it to change to a new image but its not working why?

2 Answers

Amit Bijlani
STAFF
Amit Bijlani
Treehouse Guest Teacher

You can do that by using a segue and passing data from one view controller to another.

See: http://teamtreehouse.com/library/ios-5-foundations/storyboards

thankyou