我曾经只以编程方式创建 viewController/views。
使用 xib 比我预期的要难。
我发现 xib 或任何其他子视图的 self.view 最初为零。
I created the viewController by [[MyViewController alloc] init]
and tried to [myViewController.imageView setImage: image]; //imageView is nil
NSLog(@"%p", myViewController.view); // access view here
[myViewController.imageView setImage: image]; //works now
我觉得我错过了一些非常基本的东西。那会是什么?