当前位置: 代码迷 >> Iphone >> IPhone开发 IPad运用UIModalPresentationFormSheet时隐藏键盘
  详细解决方案

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

热度:95   发布时间:2016-04-25 06:32:39.0
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); 
}
  相关解决方案