简体   繁体   English

如何在navigationBar(UITableView)swift下添加SearchController.searchBar

[英]How to add SearchController.searchBar under navigationBar (UITableView) swift

I try to add SearchController.searchBar under navigation bar. 我尝试在导航栏下添加SearchController.searchBar。

override func viewDidLoad() {
        super.viewDidLoad()
        searchController = UISearchController(searchResultsController: nil)
        searchController.searchResultsUpdater = self
        searchController.searchBar.sizeToFit()
        searchController.hidesNavigationBarDuringPresentation = false
        searchController.delegate = self
        searchController.dimsBackgroundDuringPresentation = false //
        searchController.searchBar.delegate = self
        let SearchFrame = CGRectMake(0,(self.navigationController?.navigationBar.frame.height)!, (self.navigationController?.navigationBar.frame.width)!,searchController.searchBar.frame.height)
        searchController.searchBar.frame = SearchFrame
        self.navigationController?.navigationBar.addSubview(searchController.searchBar)
}

This code add a searchBar under navigationBar, but searchBar can't detect user interaction! 此代码在navigationBar下添加了searchBar,但searchBar无法检测到用户交互! I can't click on search text input field!! 我无法点击搜索文字输入字段!! What did I do wrong? 我做错了什么?

Try this. 尝试这个。 It works for me 这个对我有用

    var SearchFrame : CGRect?
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        let searchController = UISearchController(searchResultsController: nil)
        searchController.searchResultsUpdater = self
        searchController.searchBar.sizeToFit()
        searchController.hidesNavigationBarDuringPresentation = false
        searchController.delegate = self
        searchController.dimsBackgroundDuringPresentation = false //
        searchController.searchBar.delegate = self
        SearchFrame = CGRectMake(0,(self.navigationController?.navigationBar.frame.height)!, (self.navigationController?.navigationBar.frame.width)!,searchController.searchBar.frame.height)
        searchController.searchBar.frame = SearchFrame!
        self.navigationController?.navigationBar.addSubview(searchController.searchBar)


    }

    override func viewDidAppear(animated: Bool) {
        super.viewDidAppear(animated)

        var navbarFrame = self.navigationController!.navigationBar.frame
        navbarFrame.size = CGSize(width: navbarFrame.width, height: navbarFrame.height + SearchFrame!.height)
        self.navigationController?.navigationBar.frame = navbarFrame
    }

My problem was solved! 我的问题解决了!

First we need to create a XIB file with class and add two navigationBar to them! 首先,我们需要使用类创建一个XIB文件,并为它们添加两个navigationBar! Then need to add a IBOutlets! 然后需要添加一个IBOutlets! xib中的两个导航栏!

Then write the code: 然后编写代码:

var TitleNavigationBar = UINavigationBar() //This need to add Title and Subtitle to NavigationBarTitleView

override func viewDidLoad() {
        super.viewDidLoad()
        let NavBarWithSearch = NSBundle.mainBundle().loadNibNamed("NavBarWithSearchBar", owner: self, options: nil)[0] as! NavBarWithSearchBar
        self.navigationController?.navigationBar.frame = CGRectMake((self.navigationController?.navigationBar.frame.origin.x)!, 0.0, (self.navigationController?.navigationBar.frame.width)!, (self.navigationController?.navigationBar.frame.height)! +          self.searchController.searchBar.frame.height)
        NavBarWithSearch.frame = CGRectMake(0.0,0.0, (self.navigationController?.navigationBar.frame.width)!, (self.navigationController?.navigationBar.frame.height)!)
        NavBarWithSearch.NavigationBarForSearchBar.topItem?.titleView = searchController.searchBar
        TitleNavigationBar = NavBarWithSearch.CustomNavigationBar //=======This need to add Title and Subtitle to NavigationBarTitleView`
        self.navigationController?.navigationBar.addSubview(NavBarWithSearch)
        self.automaticallyAdjustsScrollViewInsets = false
        tableView.contentInset = UIEdgeInsetsMake((self.navigationController?.navigationBar.frame.height)! + UIApplication.sharedApplication().statusBarFrame.height, 0, (self.tabBarController?.tabBar.frame.height)!, 0)
        searchController.hidesNavigationBarDuringPresentation = false
}
override func viewWillAppear(animated: Bool) {

        //This need to add Title and Subtitle to NavigationBarTitleView
        let titleView = NSBundle.mainBundle().loadNibNamed("NavTitleView", owner: self, options: nil)[0] as! NavTitleView
        titleView.TitleLabel.text = "Title"
        titleView.contentMode = UIViewContentMode.ScaleAspectFit
        titleView.SubtitleLabel.text = "SubTitle"
        let TitleViewFrame = CGRectMake((UIScreen.mainScreen().bounds.width/2) - 80, 0, 160, 44)
        titleView.frame = TitleViewFrame
        TitleNavigationBar.topItem?.titleView = titleView
        //========This need to add Title and Subtitle to NavigationBarTitleView
        self.navigationController?.navigationBar.frame = CGRectMake((self.navigationController?.navigationBar.frame.origin.x)!, 20, (self.navigationController?.navigationBar.frame.width)!, (self.navigationController?.navigationBar.frame.height)! + self.searchController.searchBar.frame.height)

}

XIB file with Class for NavBarTitleView with subtitle should be look like like this: 带有字幕的NavBarTitleView类的XIB文件应该如下所示: 标题和子标题

Finally i get beautiful Navigation Bar with search bar! 最后我得到了带搜索栏的漂亮导航栏!

带搜索栏文本输入的导航栏

PS searchController.hidesNavigationBarDuringPresentation = true // This doesn't work because Custom navigation bar added to main navigation bar as subview! PS searchController.hidesNavigationBarDuringPresentation = true //这不起作用,因为自定义导航栏作为子视图添加到主导航栏!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM