How to add the UISegmentedControl in UINavigationBar?

前端 未结 6 1425
遥遥无期
遥遥无期 2021-02-04 03:44

I have tried to add the UISegmentedControl to the bottom of UINavigationBar with title. But i cannot add it and I cannot add UISegmentedControl

6条回答
  •  没有蜡笔的小新
    2021-02-04 04:35

    I think you are looking for this.

    let searchVC = self.storyboard?.instantiateViewController(withIdentifier:"idofcontroller")
    let searchController = UISearchController(searchResultsController: searchVC)
    searchController.searchResultsUpdater = self
    searchController.obscuresBackgroundDuringPresentation = false
    searchController.searchBar.placeholder = "Search"
    navigationItem.searchController = searchController
    definesPresentationContext = true
    
    searchController.searchBar.scopeButtonTitles = ["News", "Photos", "Videos"]
    searchController.searchBar.delegate = self
    

提交回复
热议问题