c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮相关的知识,希望对你有一定的参考价值。
@implementation UISearchBar (UISearchBar_EnableEmptySearch)
- (void)enableEmptySearch {
UITextField *searchBarTextField = nil;
for (UIView *subView in self.subviews){
for (UIView *secondLeveSubView in subView.subviews){
if ([secondLeveSubView isKindOfClass:[UITextField class]])
{
searchBarTextField = (UITextField *)secondLeveSubView;
break;
}
}
}
searchBarTextField.enablesReturnKeyAutomatically = NO;
}
#import <UIKit/UIKit.h>
@interface UISearchBar (UISearchBar_EnableEmptySearch)
- (void)enableEmptySearch;
@end
以上是关于c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮
c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮
c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮
c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮
c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮
c_cpp 在UISearchBar上使用空值启用键盘上的搜索按钮