假设我有2个控制器,BarViewController和FooViewController。
FooViewController有一个名为imageView的UIImageView的出口:
@property (nonatomic, weak) UIImageView *imageView;
BarViewController有一个UIButton按钮的插座。 BarViewController有一个从这个按钮到FooViewController的segue,名为BarToFooSegue(在故事板中完成)。
当我运行以下代码,并在FooViewController.imageView.image上调用NSLog时,结果为nil,我的图像不会显示。为什么会这样?
// code in BarViewController
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if([segue.identifier isEqualToString:@"BarToFooSegue"]){
NSURL *photoUrl = @"http://www.randurl.com/someImage"; // assume valid url
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:photoUrl]];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
[segue.destinationViewController setImageView:imageView];
}
}
我已经尝试将FooViewController.imageView设置为强而不是弱,但问题仍然存在:
@property (nonatomic, strong) UIImageView *imageView;
运行我的调试器,我注意到FooViewController中的imageView在prepareForSegue中正确更新:但随后在几行之后重新更新为一些新分配的imageView,其中@property image设置为nil。我不确定控制流的哪一部分导致了这种情况,因为它发生在用汇编语言编写的行中。
我通过向FooViewController添加UIImage属性来实现我的代码:
@property (nonatomic, strong) UIImage *myImage;
并更改prepareForSegue:在BarViewController中传递图像而不是imageView:
// code in BarViewController
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if([segue.identifier isEqualToString:@"BarToFooSegue"]){
NSURL *photoUrl = @"http://www.randurl.com/someImage"; // assume valid url
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:photoUrl]];
[segue.destinationViewController setMyImage:image];
}
并修改viewWillAppear:在FooViewController中:
- (void)viewWillAppear:(BOOL)animated{
[self.imageView setImage:self.myImage];
}
答案 0 :(得分:6)
在设置图像之前调用[segue.destinationViewController view];
,这将导致加载视图层次结构,然后设置您的出口。
答案 1 :(得分:2)
在prepareForSegue
出口尚未定义 - 他们没有。您正在向nil发送消息,这是完全正常的,因此不会给您一个错误,但在这种情况下,它可能会导致意外行为。您可以通过创建临时UIImage属性来解决它,并在viewDidLoad或viewWillAppear中将图像视图设置为该图像。
答案 2 :(得分:1)
如果您必须直接设置imageView.image,我同意@ikuragames的答案。但通常情况下,我将ViewControllers的视图层次结构保密。
我不认为将UIImage属性添加到Foo是很难看的。我认为它实际上比@ikuragames正确解决方案更漂亮。
答案 3 :(得分:-1)
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if([segue.identifier isEqualToString:@"BarToFooSegue"]){
NSURL *photoUrl = @"http://www.randurl.com/someImage";
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:photoUrl]];
FooViewController *vc = [segue destinationViewController];
vc.myImage = image;
}
}