Hey guys, I was looking around for a solution to this, but couldn't find anything anywhere. I hope you can help.

There's this cool feature in the UITableViews in Game Center and the search bars they have at their tops. Unlike apps where the search bar is placed in the table header view (so it counts as a standard table cell), instead, it seems to be bolted to the parent navigation bar above it. So when scrolling the table, the search bar does indeed move, but if you scroll above the boundaries of the table, the search bar never stops touching the navigation bar.

Does anyone know how this might have been done? I was wondering if Apple maybe placed both the search bar and the table in a parent scroll view, but I'm wondering if it may be simpler than that.

Thanks a lot guys!

-Tim

link|improve this question

50% accept rate
feedback

2 Answers

up vote 6 down vote accepted

Bob's answer is reversed: it ought to be MIN(0, scrollView.contentOffset.y).

Also, in order to properly support resizing (which would occur when rotated), the other frame values should be reused.

-(void)scrollViewDidScroll:(UIScrollView *)scrollView 
{
    UISearchBar *searchBar = searchDisplayController.searchBar;
    CGRect rect = searchBar.frame;
    rect.origin.y = MIN(0, scrollView.contentOffset.y);
    searchBar.frame = rect;
}
link|improve this answer
Oh haha yeah, I noticed that. Thanks very much for that! That's the code I ended up going with. ^_^ – TiM Mar 15 '11 at 15:29
I guess it should be MAX instead of MIN. – msbrogli Aug 11 '11 at 4:06
feedback

You could put the searchBar in the table header and implement the - (void)scrollViewDidScroll:(UIScrollView *)scrollView delegate method for the tableView. Doing something like this should work:

-(void) scrollViewDidScroll:(UIScrollView *)scrollView {
    searchBar.frame = CGRectMake(0,MAX(0,scrollView.contentOffset.y),320,44);
} 

If you used the searchDisplayController, you would access the searchbar using self.searchDisplayController.searchbar.

link|improve this answer
Thanks for that Bob! Yeah I was talking to some friends yesterday after posting the question and we came up with basically the same thing. Although, I was looking at subclassing UITableView and doing it in there, without having to touch the delegate. If I complete the code, I'll post it up here. :) – TiM Feb 4 '11 at 6:32
Hi Tim, Do you have a sample code for this? Thanks. – Adarsh V C Dec 28 '11 at 7:04
Hey man. The code in the accepted answer above is what I ultimately rolled with. It's just a matter of intercepting the scroll events with the UITableView's delegate. – TiM Feb 4 at 6:22
feedback

Your Answer

 
or
required, but never shown

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