我有一个带有一些文本字段的视图控制器当用户点击文本字段时我需要从视图ipad纵向屏幕的右侧显示键盘。可以在右侧显示键盘
答案 0 :(得分:0)
如果要更改键盘的侧面,则必须更改statusBar的侧面。 例如:
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
[[UIApplication sharedApplication]setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft];
if([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0){
[[UIDevice currentDevice] setValue:[NSNumber numberWithInteger:UIDeviceOrientationLandscapeRight] forKey:@"orientation"];
}