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

ios 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
STAFF
Amit Bijlani
Treehouse Guest Teacher

Where is this method image located? And what kind of property is pepsiLogoFTW ?

image method is in second view controller and the property of pepsiLogoFTW is @property (strong , nonatomic) UIImageView *pepsiLogoFTW

never mind found out how to do it thanks