alt text http://img210.imageshack.us/img210/5992/searchdisplaycontroller.png
Are the following objects customizable?
1. UISearchBar Scope Buttons (UISegm
I was able to customize the tableview by using the following code:
- (void)searchDisplayController:(UISearchDisplayController *)controller willShowSearchResultsTableView:(UITableView *)tableView {
tableView.backgroundColor = [UIColor colorWithRed:(19.0 / 255.0) green:(19.0 / 255.0) blue:(19.0 / 255.0) alpha:1.0];
tableView.separatorColor = [UIColor blackColor]; }
However when you touch the cancel button, the interface will flash white before going back to the original tableview. How can this be fixed?