我在编程和使用 Xcode 进行 iPhone 应用程序设计方面相当陌生。我希望执行以下操作:
- 为儿童应用程序启动并保持横向模式。
- 使用滑动手势在图像之间移动。每次滑动一张图像。
我的问题是这样的:
即使以横向模式启动,并且在轻扫之后,iphone 模拟器也会旋转到纵向模式。
非常感谢任何建议或评论。
您必须在 shouldAutorotateToInterfaceOrientation: 中定义您支持的模式。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
将处理两种横向模式。