in three20 TTCatalog有这个演示:SearchTestController
我不知道为什么使用TTListDataSource会自动重新加载数据?
我尝试模仿但我失败了......
我使用TTListDataSource,就像这样 (它是TTTableViewController的子类)
[super loadView];
self.array = [[NSMutableArray alloc] initWithObjects:@"a",@"b", nil];
self.source = [[TT520SearchSource alloc] initWithOtherItems:self.array];
[self bindData];
TTTableViewController *ttsearch = [[TTTableViewController alloc] initWithStyle:UITableViewStylePlain];
ttsearch.dataSource = self.source;
self.searchViewController =ttsearch;
self.tableView.tableHeaderView = _searchController.searchBar;
如你所见,TT520SearchSource是TTListDataSource的子类
之后,我的问题是: