我想通过单击按钮到另一个ViewController中的不同UIImageView来传递我的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中说些什么才能使用?
任何提示或建议???
由于
答案 0 :(得分:0)
您需要在目标视图控制器中使用图像视图执行某些内容。您可能希望将视图添加到视图层次结构中。您可以在viewDidLoad
或viewWillAppear:
中执行此操作。