0

根视图是一个 UIImage 视图,它有子视图,那些有子视图。我的根视图将在横向打开我已经在项目的 .plist 中设置了两个项目属性,并在 applicationDidFinishLaunching 中集成了 application.statusBarOreintation 并验证它是否有效。

但是我所有的子视图都出现在纵向上。如何在我的子视图上更改它?

谢谢 // :)

4

1 回答 1

1

你有视图控制器吗?你的 shouldAutorotateToInterfaceOrientation 返回什么?

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || 
            (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}

如果没有视图控制器,您将不得不应用变换来旋转您加载的每个视图。

于 2009-09-04T21:41:23.377 回答