用 Xcode 编写了一个应用程序。单击将方向限制为两个纵向选项的按钮。将 plist 文件更改为仅允许两个纵向。以编程方式设置限制。
当我在手机上构建应用程序时,它会旋转为横向和竖直纵向。有没有搞错?
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return ((interfaceOrientation == UIInterfaceOrientationPortrait) ||
(interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown));
}