我想构建一个显示空表视图的应用程序。然后用户可以在搜索栏上写一个文本,当他们点击搜索按钮时,表格视图将被写入创建的数组项。
我只需要在用户单击 SearchButton 时进行搜索。我怎样才能做到这一点?我必须使用哪些方法?
我已经尝试过这种方法,但它不起作用。
- (void) searchBarSearchButtonClicked:(UISearchBar *)theSearchBar {
NSInteger nVideos = [appDelegate.allVideos count];
NSLog(@"number of videos: %i", nVideos);