如何在iOS6.0中转换键盘?

时间:2013-01-31 10:28:51

标签: iphone ios6 rotation uikeyboard

我有一个纵向视图(状态栏隐藏),但我转过它。然后键盘显示:

enter image description here

我想要键盘转动和全屏。请帮我。提前谢谢。

1 个答案:

答案 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中,您可以将其设置为仅横向