iOS 7 UISearchDisplayController search bar disappears

前端 未结 4 656
别那么骄傲
别那么骄傲 2020-12-29 13:50

I was recently updating my app and came across this issue. When i start typing in the search bar the search bar disappears and i can only see the table view. I can still kee

4条回答
  •  无人及你
    2020-12-29 13:56

    -(void)setCorrectSearchBarFrames
    {
        //INFO: Here we set the frame to avoid overlay
        CGRect searchDisplayerFrame = self.searchDisplayController.searchResultsTableView.frame;
        searchDisplayerFrame.origin.y = 40.0;
        searchDisplayerFrame.size.height -= 40.0;
        self.searchDisplayController.searchResultsTableView.frame = searchDisplayerFrame;
    }
    

    Thanks Tihi. If I use this block of code the search bar be back !!

    Have fun, I hope it could help you.

提交回复
热议问题