我正在制作一个应用程序只是为了好玩,它似乎工作正常,除了当我希望它只在一个屏幕上是横向时,它会保持纵向。我怎样才能让它在加载时自动旋转到横向?我已经尝试过了:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight ) || (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
但是,这似乎不起作用。只有当我旋转设备时,它才会旋转视图,然后它将保持横向,但我希望它能够在加载后立即执行,而无需用户旋转设备以使其脱离纵向。有什么我想念的吗?感谢您的所有帮助!如果您想从应用程序中获取更多代码,我将非常乐意与您分享。