新しい iPhone 5 で動作するようにアプリを更新しようとしていますが、一部のビューでキーボードがビューの下部ではなく上部からドロップダウンしています。よりよく説明するための画像を次に示します。
これは iOS 6.0 より前でも機能していたので、このバグが目立つようになったのは新しい API の何かに違いないと思います。UIVeiwController で向きをサポートするために、次のコードを使用しています。
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
- (BOOL)shouldAutorotate {
return YES;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
他の誰かが同様の問題を見たことがありますか? ありがとう!