2

我想通过单击按钮将加载了图像的 UIImageView 传递给不同 ViewController 中的不同 UIImageView。

这是我的代码

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Make sure your segue name in storyboard is the same as this line
if ([[segue identifier] isEqualToString:@"MY_SEGUE"])
{
    // Get reference to the destination view controller
    ViewControllerName *vc = [segue destinationViewController];

    // Pass the current UIImageView to a different UIImageView in a different view controller
    [vc setUIImageView:UIImageView2];
}
}

到目前为止,当我运行它时,当我加载下一个视图时没有任何反应。我没有错误。我需要在 - (void)viewDidLoad 中说些什么才能使其正常工作吗?

任何提示或建议???

谢谢

4

1 回答 1

1

您需要对目标视图控制器中的图像视图做一些事情。您可能希望将视图添加到视图层次结构中。您可以在viewDidLoadviewWillAppear:.

于 2012-01-21T03:48:47.840 回答