我有一个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的图像。