首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

ipad开发-模态窗口中不能掩藏键盘

2012-07-23 
ipad开发--模态窗口中不能隐藏键盘使用resignFirstResponder也不能隐藏键盘,需要实现UIViewController的di

ipad开发--模态窗口中不能隐藏键盘

使用resignFirstResponder也不能隐藏键盘,需要实现UIViewController的disablesAutomaticKeyboardDismissal方法,return NO

- (BOOL) disablesAutomaticKeyboardDismissal {    return NO;}
?

热点排行