一旦调用视图,带有通过IB设置的图像的UIImageView大约需要10秒钟

时间:2014-08-01 03:31:25

标签: ios objective-c uiviewcontroller uiimageview

我有一个UIView,然后我使用下面的代码将另一个UIView作为子视图添加到该视图中。

TestViewController* holesaw = [[TestViewController alloc] init];
holesaw.view.frame = CGRectMake(0, [UIApplication sharedApplication].statusBarFrame.size.height + 44, holesaw.view.frame.size.width, 454);
[self addChildViewController:holesaw];
[holesaw didMoveToParentViewController:self];
[self.view addSubview:holesaw.view];

子视图的UIImageView图像设置为通过IB显示。加载需要大约10秒钟。有谁知道为什么?我已经尝试将图像作为.jpg和.png,并且它只是一个200kb的图像。

0 个答案:

没有答案