我是在iOS上开发应用程序的新手,我正尝试将其添加到NavigationBar 2 SearchBar中。一个SearchBar易于添加:

searchController.searchBar.sizeToFit()
navigationItem.titleView = searchController.searchBar


但我不知道如何在导航栏中添加2个搜索栏。

我想看起来像这样:

ios - 导航栏中的多个搜索栏-LMLPHP

最佳答案

我认为没有任何方法可以在导航栏中添加多个搜索栏。根据上面给出的设计,我建议您的最佳解决方案是在ViewController中而不是在导航栏中添加两个UITextField或两个UISearchBar。

关于ios - 导航栏中的多个搜索栏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44683199/

10-12 14:44