3

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

在此处输入图像描述

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

4

1 回答 1

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

于 2013-01-31T13:30:32.323 回答