我有一个表格视图,单元格高度为 70.im 使用搜索栏..但问题是搜索栏提供的默认表格视图的高度无法增加..是否有任何委托方法... cud u伙计们帮我下面是代码。
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (tableView == self.tableViewFriendsList) {
return 70;
}
if (tableView == searchDisplayController.searchResultsTableView) {
return 70;
}
}