OGeek|极客世界-中国程序员成长平台

标题: ios - searchResultsUpdater 的其他 ViewController [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-11 18:57
标题: ios - searchResultsUpdater 的其他 ViewController

如何为 searchResultsUpdater 设置另一个 ViewController? 我试着这样做,但结果没有更新。

let searchNav = storyboard!.instantiateViewController(withIdentifier: "SearchControllerNav") as! UINavigationController
    let vc = searchNav.topViewController as! PageMenuVC
    let searchVC = storyboard!.instantiateViewController(withIdentifier: "SearchVC") as! SearchVC
    self.searchController = UISearchController(searchResultsController: vc)
    vc.searchController.searchResultsUpdater = searchVC

这是我的 PageMenuVC:

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


    var controllerArray : [UIViewController] = []

    let searchVC = storyboard?.instantiateViewController(withIdentifier: "SearchVC")
    controllerArray.append(searchVC!)

    let testVC = storyboard?.instantiateViewController(withIdentifier: "test")
    controllerArray.append(testVC!)

    // Customize menu (Optional)
    let parameters: [CAPSPageMenuOption] = [
        .scrollMenuBackgroundColor(UIColor(red: 30.0/255.0, green: 30.0/255.0, blue: 30.0/255.0, alpha: 1.0)),
        .viewBackgroundColor(UIColor(red: 20.0/255.0, green: 20.0/255.0, blue: 20.0/255.0, alpha: 1.0)),
        .selectionIndicatorColor(UIColor.orange),
        .bottomMenuHairlineColor(UIColor(red: 70.0/255.0, green: 70.0/255.0, blue: 80.0/255.0, alpha: 1.0)),
        .menuItemFont(UIFont(name: "HelveticaNeue", size: 13.0)!),
        .menuHeight(40.0),
        .menuItemWidth(90.0),
        .centerMenuItems(true)
    ]

    // Initialize scroll menu
    pageMenu = CAPSPageMenu(viewControllers: controllerArray, frame: CGRect(x: 0.0, y: 0.0, width: self.view.frame.width, height: self.view.frame.height), pageMenuOptions: nil)

    self.addChildViewController(pageMenu!)
    self.view.addSubview(pageMenu!.view)
    pageMenu!.didMove(toParentViewController: self)

}

SearchVC 我有这个功能:

//MARK: Filter
func filterContentForSearchText(searchText: String, scope: String = "All") {
    filteredUsers = allUsers.filter { user in
        return user.name.lowercased().contains(searchText.lowercased())
    }
    collectionView.reloadData()
}




//MARK: SearchResultDelegate
func updateSearchResults(for searchController: UISearchController) {
    let searchBarText = searchController.searchBar.text!
    filterContentForSearchText(searchText: searchBarText)
    self.searchController = searchController
    collectionView.reloadData()
}

如果您需要更多信息,请告诉我!



Best Answer-推荐答案


我认为您需要将实例化的 View Controller 保留在 self View Controller 的(私有(private))属性中:如果将其设置为 vc.searchController.searchResultsUpdater,这只是一个 weak 引用,因此如果你不将 searchVC 存储在 self 中,它会很快被销毁(只是在代码块的末尾)。 searchNav 也是如此(但我认为这将被呈现,因此我将在下面跳过它):

class MyVC : UIViewController {
    var searchVC:UIViewController?
    // ...
    func XYZ() {
        let searchNav = storyboard!.instantiateViewController(withIdentifier: "SearchControllerNav") as! UINavigationController
        let vc = searchNav.topViewController as! PageMenuVC
        // Store searchVC in property:
        self.searchVC = storyboard!.instantiateViewController(withIdentifier: "SearchVC") as! SearchVC
        self.searchController = UISearchController(searchResultsController: vc)
        vc.searchController.searchResultsUpdater = searchVC
        self.present(searchNav, animated:true, completion:nil)
    }
}

关于ios - searchResultsUpdater 的其他 ViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42218091/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) Powered by Discuz! X3.4