Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've set my UITableView row height to in Interface Builder to 54.0. I have a UISearchDisplayController on that view. When the user taps the search bar in it, the table resizes properly. However, when they start typing (and actually doing the search) the row height decreases. It stays wrong until the search taps Cancel.

I could find no documentation on this behavior on Apple's site.

I've tried setting the row height in UISearchDisplayDelegate delegate calls. This might be the right approach, but I don't know the details and couldn't get it to work.

I've also tried implementing - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;. This worked, but I have thousands of entries in this list and can't take the performance hit.

What's the right way to fix this?

share|improve this question

7 Answers

up vote 15 down vote accepted

The correct way to do this is to use the following delegate.

- (void)searchDisplayController:(UISearchDisplayController *)controller didLoadSearchResultsTableView:(UITableView *)tableView
{
    tableView.rowHeight = 54.0f; // or some other height
}

It's called when the UITableView is created or shown.

If you happen to call searchDisplayController.searchResultsTableView in other code when a search is not being performed, it will create the UITableView in advance. If you use the willShow delegate method to set the rowHeight, it will miss the timing (for some reason) to change the rowHeight if the tableView has been created beforehand.

share|improve this answer
I'm embarrassed at how many times I've had to move the accepted answer here, but you're obviously correct. THanks. – Steven Fisher Feb 2 '12 at 17:18

I found it!

Assuming the table is stored in tableView:

- (void)viewDidLoad;
{
    [super viewDidLoad];
    self.searchDisplayController.searchResultsTableView.rowHeight = tableView.rowHeight;
}

Nothing else is necessary.

Edit: See netmikey's answer for a better solution.

share|improve this answer

Steve, your solution didn't work for me: The first time the search result would display fine, but when a user was hitting "Cancel" (closing away the search bar) and then reopening it and entering a search term into it, the height would be wrong again.

DigDog's solution of using searchDisplayController:didShowSearchResultsTableView was kinda working, but users saw the cell height "jumping" when the search started.

The solution I found, that fixed both these issues is using:

- (void)searchDisplayController: (UISearchDisplayController *)controller 
 willShowSearchResultsTableView: (UITableView *)searchTableView {

    searchTableView.rowHeight = myTableView.rowHeight;
}

... in the UISearchDisplayDelegate.

Regards, netmikey

share|improve this answer
That's a better answer. Accepted. :) – Steven Fisher May 20 '11 at 21:17

Overriding the method didLoadSearchResultsTableView should do the trick.

- (void)searchDisplayController:(UISearchDisplayController *)controller didLoadSearchResultsTableView:(UITableView *)tableView {
    tableView.rowHeight = 82.0; // Change height of search result row
}

More explanation from this blog

share|improve this answer

You need to set both

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {    
    return 54.;
}

and

self.tableView.rowHeight = 54.;

also in your UISearchDisplayDelegate

- (void)searchDisplayController:(UISearchDisplayController *)controller didShowSearchResultsTableView:(UITableView *)tableView {
    tableView.rowHeight = 54.; 
}

Otherwise, when "No Result" happened in searching, cell height will fall back to default.

share|improve this answer
Actually, heightForRowAtIndexPath: and .rowHeight behaves a little differently (at least in your case), so make sure you set them both, not just one of them. – digdog Apr 14 '10 at 18:05
I can't use heightForRowAtIndexPath. With 20,000 rows it slows down the table far too much on a real device. – Steven Fisher Apr 14 '10 at 18:35

None of the solutions worked for me...

Did my own hit and trial... and got it working...

If you want different row heights for normal & search table views...

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
// for normal results
     if (tableView==self.tableView) return 54;
// for search results
     else return 54; }

And if you want common height...

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
     return 54; }

PS: Do keep in mind, if you have same row height for each row, this method is not very efficient resource usage wise, as the row height is re-calculated for each cell... Although, this is unnoticeable in most cases, I am still searching for a better solution!

share|improve this answer

In viewDidLoad:

you can set the search display controller's delegate to self:

- (void)viewDidLoad 
{
    self.searchDisplayController.delegate = self;
}

Then, implement the table view delegate in your view controller:

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (tableview == self.searchDisplayController.tableView) {
        return 55;
    } else if (tableView == self.tableView) {
       return  44;
     }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.