self.view.frame iOS大小不正确

时间:2012-05-24 12:04:19

标签: ios frame

我的视图中存在框架问题。

我制作了现在的视图控制器。一切都很好。我检查我的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中我只设置了横向方向。

我的问题是:为什么框架改变了?再次,我不转动我的观点。

非常感谢!

0 个答案:

没有答案