我有一个纵向视图(状态栏隐藏),但我转过它。然后键盘显示:
我想要键盘转动和全屏。请帮我。提前谢谢。
答案 0 :(得分:0)
我看过这些评论。 你不能让屏幕像这样风景。 IOS 6有一些新东西,“应用程序的appDelegate总是以肖像形式开始” 您应该使用IOS 6自动旋转! 这应该在appDelegate:
中 - (NSUInteger)application:(UIApplication*)application
supportedInterfaceOrientationsForWindow:(UIWindow*)window
{
return (UIInterfaceOrientationMaskAll);
}
在视图控制器中:
-(BOOL)shouldAutorotate
{
return YES;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}
在supportedInterfaceOrientations中,您可以将其设置为仅横向