IQ键盘设置 键盘工具条与 UISearchBar 冲突

用 searchbar 和 iq键盘工具条的时候 会发现 工具条没有了,经过分析是iq作者对UISearchBar做了判断

  BOOL _IQcanBecomeFirstResponder = ([self canBecomeFirstResponder] && [self isUserInteractionEnabled] && ![self isHidden] && [self alpha]!=0.0 && ![self isAlertViewTextField] && ![self isSearchBarTextField]  );

[self isSearchBarTextField]

修改方法 将这个 删除就行了

[self isSearchBarTextField]

IQUIView+Hierarchy.m 146行

你可能感兴趣的:(IQ键盘设置 键盘工具条与 UISearchBar 冲突)