UIScrollView を使用して Xcode 5 でビューを作成しました。デバイスが横向きモードであっても、スクロールビューが縦向きのままになるように、ScrollView をロックしたいと思います。このためのメニュー オプションが表示されなかったので、コードを使用する必要がありますか?
質問する
130 次
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 に答える