回答

-1

只要你的委託設置正確,你可以返回你想要的任何數據集。

self.searchResults = @[@"some stuff", @"some more stuff", @"and so on..."]; 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 
    if (tableView == [[self searchDisplayController] searchResultsTableView]) { 
    return [self.searchResults count]; 
    } 
    else { 
    return [self.data count]; 
    } 
} 
+0

只有在開始在搜索欄中輸入內容後,表格視圖纔會顯示。 – 2014-01-05 10:48:49

相關問題