【发布时间】:2013-11-17 13:39:51
【问题描述】:
例如我用这段代码关闭自动旋转
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return NO;
}
-(BOOL)shouldAutorotate
{
return NO;
}
-(NSUInteger)supportedInterfaceOrientations
{
return 0;
}
而且我的按钮、标签、textFields 和其他对象可以根据设备的当前方向旋转。但是键盘不想旋转=/ 我如何可以旋转键盘或我不能。谁知道? 请帮忙) http://www.pictureshack.ru/images/8145_Snimok_ekrana_05_11_2013_18_55_00_s_Simulyatora_iOS.png
【问题讨论】:
标签: ios xcode keyboard orientation