ios - UIImageView with an image set through IB is taking about 10 seconds to appear once view is called -
I have UIView
, and then I have another UIView
Add a child to see that scene using the code given below.
TestViewController * holesaw = [[TestViewController alloc] init]; Holesaw.view.frame = CGRectMake (0, [UIApplication shared application] .statusBarFrame.size.height + 44, holesaw.view.frame.size.width, 454); [Add self childview controller: hole]; [Mentioned point view controller: Self]; [Self.view addSubview: holesaw.view];
In the child's view, there is an image showing a UIImageView
through an IB. It takes about 10 seconds to load. Does anyone know why? I have seen this image both as .jpg and .png, and this is only image of 200kb.
Comments
Post a Comment