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

IPhone开发 IPad运用UIModalPresentationFormSheet时隐藏键盘

2012-07-26 
IPhone开发 IPad使用UIModalPresentationFormSheet时隐藏键盘普通的做法resignFirstResponder在UIModalPre

IPhone开发 IPad使用UIModalPresentationFormSheet时隐藏键盘

普通的做法resignFirstResponder在UIModalPresentationFormSheet的时候不起效 加上如下代码:


[passwordField resignFirstResponder]; 
@try { 
Class UIKeyboardImpl = NSClassFromString(@"UIKeyboardImpl");
  id activeInstance = [UIKeyboardImpl performSelector:@selector(activeInstance)]; [activeInstance performSelector:@selector(dismissKeyboard)]; 
}
@catch (NSException *exception) { 
NSLog(@"%@", exception); 
}

热点排行