0

我想构建一个显示空表视图的应用程序。然后用户可以在搜索栏上写一个文本,当他们点击搜索按钮时,表格视图将被写入创建的数组项。

我只需要在用户单击 SearchButton 时进行搜索。我怎样才能做到这一点?我必须使用哪些方法?

我已经尝试过这种方法,但它不起作用。

- (void) searchBarSearchButtonClicked:(UISearchBar *)theSearchBar {

    NSInteger nVideos = [appDelegate.allVideos count];

    NSLog(@"number of videos: %i", nVideos);
4

1 回答 1

0

您是否更新与 tableView 关联的数据源?据我所知,一旦用户单击带有一些搜索词的搜索按钮,您应该更新与 tableView 相关的数组并重新加载它。

于 2011-04-26T21:39:47.060 回答