因此,我把事情nes在刀子里:
UIViewController
|
|-UIView (container for some about text UILabel)
| |
| UILabel
|
UIScrollView (makes image scalable)
|
UIImageView
我试图把UIImageView在另一个观点控制人员中的形象从方案上载,然后把新的IDViewController推到UINavigationController。 一切都奏效,但当我给人以形象时,新观点没有任何内容。
因此, DidFinish Loading: 我这样做:
UIImage* image = [UIImage imageWithData:imageData];
MyImageController* imageController = [[MyImageController alloc] init];
imageController.title = expandImage.title;
imageController.imageView.image = image;
[self.navigationController pushViewController:imageController animated:YES];
Nothing shows up besides what I designed in the nib. Any help?