我的视图中存在框架问题。
我制作了现在的视图控制器。一切都很好。我检查我的self.view框架并在横向模式下它等于(0.0, 0.0, 1024.0, 768.0)
接下来我在视野中做一些动作。在执行此操作后,我想检查我的self.view,现在它等于(0.0, 0.0, 768, 1024)
但我不会转动我的观点。
在当前视图控制器中,我有以下方法:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
在plist中我只设置了横向方向。
我的问题是:为什么框架改变了?再次,我不转动我的观点。
非常感谢!