UISearchBar in navigationbar

前端 未结 5 1525
梦如初夏
梦如初夏 2020-11-27 14:16

How can I show a UISearchBar in the NavigationBar?

I can\'t figure out how to do this.

Your help is very much appreciated.

5条回答
  •  -上瘾入骨i
    2020-11-27 15:12

    To put searchBar into the center of navigationBar:

    self.navigationItem.titleView = self.searchBarTop;
    

    To put searchBar to the left/right side of navigationBar:

    UIBarButtonItem *searchBarItem = [[UIBarButtonItem alloc] initWithCustomView:searchBar];
    self.navigationItem.rightBarButtonItem = searchBarItem;
    

提交回复
热议问题