こんにちは。サポートされているインターフェイスの向きを.plistファイルで横向き(左のホームボタン)、横向き(右のホームボタン)に設定したアプリがあります。
およびtestviewcontroller.mファイル内
私はコードを持っています:-
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
iOS6シミュレーターで正常に表示されるようにするには、どのような変更を加える必要がありますか
ありがとう
答えが見つかりました:-
if ([[UIDevice currentDevice].systemVersion floatValue] < 6.0)
{
// how the view was configured before IOS6
[self.window addSubview: navigationController.view];
[self.window makeKeyAndVisible];
}
else
{
// this is the code that will start the interface to rotate once again
[self.window setRootViewController: self.navigationController];
}
このリンクから-
しかし、iOS6には別の問題があります-テキストボックスをクリックしてもキーボードが呼び出されません