库的下载链接:https://github.com/hackiftekhar/IQKeyboardManager
IQKeyboardManager作为一款简单实用的工具,为我们的开发提供了很多的便利。它的功能不再做过多的介绍,这里主要分享一下我在使用IQKeyboardManager时,对toolbar中"Done"按钮事件的捕获。
IQKeyboardManager为我们提供了在toolbar上添加按钮的方法:
[textField addPreviousNextDoneOnKeyboardWithTarget:self previousAction:@selector(customPrevious:) nextAction:@selector(customNext:) doneAction:@selector(customDone:)];
但是如果只是想捕获"Done"按钮的事件,来进行提交等操作,使用这个方法还要实现相应按钮的方法,又显得过于麻烦。
在查看了IQKeyboardManager的源码后,在IQKeyboardManager.m中可以找到"Done"按钮的方法:
-(void)doneAction:(IQBarButtonItem*)barButton
在此方法中,可以找到现在为第一响应的textField/textView,这时再对"Done"按钮的事件进行自定义就变得容易多了。我使用了tag对textField进行了标记。
UITextField * textField=[[UITextField alloc] initWithFrame:CGRectMake(50, 150, 150, 30)];
textField.tag=50001;//设置一个项目中唯一的tag值
[self.view addSubview:textField];
在doneAction中通过通知的方式传递事件
-(void)doneAction:(IQBarButtonItem*)barButton
{
//If user wants to play input Click sound. Then Play Input Click Sound.
if (_shouldPlayInputClicks)
{
[[UIDevice currentDevice] playInputClick];
}
UIView *textFieldRetain = _textFieldView;
BOOL isResignedFirstResponder = [self resignFirstResponder];
if (isResignedFirstResponder == YES &&
textFieldRetain.doneInvocation)
{
[textFieldRetain.doneInvocation invoke];
}
//发送通知
if (textFieldRetain.tag==50001) {
[[NSNotificationCenter defaultCenter] postNotification:[NSNotification notificationWithName:@"doneAction" object:nil userInfo:nil]];
}
}
最后在相应的viewcontroller中接收这个通知就可以了。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(done:) name:@"doneAction" object:nil];
- (void)done:(NSNotification *)notification{
//done按钮的操作
}
总结:直接对IQKeyboardManager的源码进行添加,在不破坏原有功能的情况下实现了功能。但是在cocoapods中,因为不能修改第三方库中的源码,所以只能把IQKeyboardManager拖到工程中使用才可以实现,不过IQKeyboardManager不用引入任何的framework,也不会造成很大的麻烦。如果有其他更好的方法,欢迎大家进行交流。