UINavigationbar中压缩的UISearchbar

UINavigationbar中压缩的UISearchbar

我在导航栏中设置了一个搜索栏作为标题视图。在初始视图中,搜索栏在中间均匀分布,两侧都有按钮。在此视图中,后退按钮推动搜索栏,使其不平坦。我尝试摆脱“后退”按钮的文字,但仍无法将搜索栏展开。 Squished search bar image

最佳答案

我最近需要解决相同的问题。我最终使用后退按钮图像资产创建了一个UIBarButtonItem,并将其设置为navigationItem.leftBarButtonItem。按下此按钮,然后调用navigationController?.popViewController(animated: true)将viewController弹出堆栈

关于ios - UINavigationbar中压缩的UISearchbar,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47542688/

10-10 12:32