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!
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
brendan pritchard
272 Pointsios issue 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];
}
3 Answers

Amit Bijlani
Treehouse Guest TeacherWhere is this method image
located? And what kind of property is pepsiLogoFTW
?

brendan pritchard
272 Pointsimage method is in second view controller and the property of pepsiLogoFTW is @property (strong , nonatomic) UIImageView *pepsiLogoFTW

brendan pritchard
272 Pointsnever mind found out how to do it thanks