Customize UISearchDisplayController

后端 未结 3 749
后悔当初
后悔当初 2021-02-06 13:08

alt text http://img210.imageshack.us/img210/5992/searchdisplaycontroller.png

Are the following objects customizable?

1. UISearchBar Scope Buttons (UISegm

3条回答
  •  臣服心动
    2021-02-06 13:36

    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?

提交回复
热议问题