установить UIImageView.image в prepareForSegue

Я хочу перейти к photoViewController, который имеет UIImageView. В flickrTVC я говорю:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if ([segue.identifier isEqualToString:@"showPhoto"])
    {
        photoViewController *vc = [segue destinationViewController];
        UIImage *photo = [UIImage imageWithContentsOfFile:@"images/en.jpeg"];
        [vc setDisplayedPhoto:photo];
    }
}

и реализация метода setDisplayedPhoto представляет собой:

-(void)setDisplayedPhoto:(UIImage *)image
{
    [_imageView setImage:image]; //@property (nonatomic, strong) IBOutlet UIImageView *imageView;
}

Но когда я делаю Segue, UIImageView белый ... Почему это может быть?

Ответы на вопрос(2)

Ваш ответ на вопрос