我在Size Inspector中将UIImageView的宽度设置为0,并使用代码
-viewDidLoad
{
...
//smallTiao is the outlet of UIImageView
NSLog(@"smallTiao 's width %f",self.smallTiao.frame.size.width);
}
Xcode log smallTiao的宽度为0.000000 但实际上iPad模拟器中的图像视图宽度不是0.我不知道为什么。
更新 问题解决了。我删除了图片视图。我添加了一个新的。然后一切正常。