DataTableDelegate 使用方法

简介: DataTableDelegate 使用方法
@property(nonatomic, strong) UISearchDisplayController *strongSearchDisplayController;
@property(nonatomic, strong, readwrite) UISearchBar *searchBar;
-(void)InitTableView
{
    // Uncomment the following line to preserve selection between presentations.
    self.delegate = [[DataTableDelegate alloc]init];
    self.delegate.delegate = self;
    self.delegate.parentTableView = self.tableView;
    self.tableView.dataSource = self.delegate;
    self.tableView.delegate = self.delegate;
    self.searchBar = [[UISearchBar alloc] initWithFrame:CGRectZero];
    self.searchBar.placeholder = @"Search";
    self.searchBar.delegate = self.delegate;
    [self.searchBar sizeToFit];
    self.strongSearchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:self.searchBar contentsController:self];
    self.searchDisplayController.searchResultsDataSource = self.delegate;
    self.searchDisplayController.searchResultsDelegate = self.delegate;
    self.searchDisplayController.delegate = self.delegate;
    self.tableView.tableHeaderView = self.searchBar;
}
相关文章
|
3月前
|
运维 Java 程序员
帮助你掌握if-else的正确使用方法
在编程中,if-else语句引导程序走向不同路径。它是基础却至关重要,尤其对Java程序员。本文通过实例展示if-else的有效使用方法,包括减少嵌套以提升代码可读性,利用逻辑运算符简化条件判断,以及在异常处理中的应用。通过这些实践,你将学会如何让if-else成为代码中的导航仪,避免成为绊脚石,从而编写出更清晰、高效的程序。
20 1
|
5月前
|
Go
详细解读CList使用方法
详细解读CList使用方法
57 3
visualscope的使用方法
visualscope的使用方法
258 0
visualscope的使用方法
|
6月前
|
算法 Java 测试技术
letcode的使用方法
letcode的使用方法
48 0
|
安全
MouseWithoutBoard的使用方法
MouseWithoutBoard的使用方法
291 0
if、else、else if使用方法
if、else、else if使用方法
336 0
|
测试技术
HTMLReport使用2 | HTMLReport使用方法详解
HTMLReport使用2 | HTMLReport使用方法详解
103 0
SkinMagic使用方法完美总结
一直以来总想为自己用VC6做的程序美容一下,于是便找到这款skinmagic,虽然网上有许多关于此软件的使用说明,但实际使用过程中总会遇到一些问题,经过反复摸索和总结,于是便有了此文,希望对您有所帮助。
|
Web App开发 JavaScript 前端开发
YUIDoc的使用方法小结
一.YUIDoc概述以及安装YUIDoc是为YUI Library用来生成HTML版API文档的一系列工具集,文档的生成完全基于JavaDoc风格的代码注释规则。该工具是基于Python语言编写,并且使用了几个基于Python的扩展组件作为底层支持,如读写json对象、HTML模板管理以及源代码着色等等。
883 0