博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自定义UISearchDisplayController的“No Results“标签和”Cancel“按钮
阅读量:6242 次
发布时间:2019-06-22

本文共 934 字,大约阅读时间需要 3 分钟。

- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {

UISearchBar *searchBar = self.searchDisplayController.searchBar;

[searchBar setShowsCancelButton:YES animated:YES];

for(UIView *subView in searchBar.subviews){

if([subView isKindOfClass:UIButton.class]){

[(UIButton*)subView setTitle:@"取消" forState:UIControlStateNormal];

}

}

}

No Results:

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString

{

[self filterContentForSearchText:searchString];

if ([filteredListPinYin count] == 0) {

UITableView *tableView1 = self.searchDisplayController.searchResultsTableView;

for( UIView *subview in tableView1.subviews ) {

if( [subview class] == [UILabel class] ) {

UILabel *lbl = (UILabel*)subview; // sv changed to subview.

lbl.text = @”没有结果”;

}

}

}

// Return YES to cause the search result table view to be reloaded.

return YES;

}

转载地址:http://dnsia.baihongyu.com/

你可能感兴趣的文章
被七牛云OSS对象存储测试域名回收后正确数据迁移姿势!
查看>>
简单基于spring的redis配置(单机和集群模式)
查看>>
关于 top 工具的 6 个替代方案
查看>>
第十七天-企业应用架构模式-会话状态模式
查看>>
智能直播审核方案:视频云智能业务截帧策略
查看>>
以太坊Truffle框架构建Dapp
查看>>
闭包,sync使用细节
查看>>
Vue+thinkJs博客网站(一)之vue多页面应用的webpack3配置
查看>>
PHP面试题
查看>>
拖拽上传功能的实现及原理
查看>>
Spring校验@RequestParams和@PathVariables参数
查看>>
移动端H5页面阻止图片和文字被选中
查看>>
聊聊flink TaskManager的memory大小设置
查看>>
怎么将微博图片中的水印去掉
查看>>
[实践系列]Babel原理
查看>>
浅谈SLAM的回环检测技术
查看>>
GraphQL 在 koa 框架中的实践
查看>>
网站内部页面如何正确的微调
查看>>
dubbo源码解析(八)远程通信——开篇
查看>>
在Docker中使用Xdebug
查看>>