0

我在 Xcode 5 中创建了一个带有 UIScrollView 的视图。我想锁定 ScrollView,这样即使设备处于横向模式,滚动视图也会保持纵向。我看不到这个菜单选项,所以我必须用代码来做吗?

4

1 回答 1

0

将此添加到您的 viewcontroller.m 文件中:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

在你的 AppDelegate.m

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
     return (UIInterfaceOrientationMaskAll); //Support all orientations
}
于 2013-11-12T15:50:01.217 回答