gpt4 book ai didi

ios - segue 后导航栏丢失

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:07:18 25 4
gpt4 key购买 nike

我有一个 TableView Controller ,其中我有一个附加到标题的搜索栏。

tableView.tableHeaderView = searchController?.searchBar

当我在搜索栏中输入单词时,我的帖子将从 Firebase 中检索并显示在另一个名为 segueTableViewController 的表中

 let locationSearchTable = UIStoryboard(name: "MainPage", bundle: nil).instantiateViewController(withIdentifier: "SegueTableViewController") as! SegueTableViewController
searchController = UISearchController(searchResultsController: locationSearchTable)
searchController?.searchResultsUpdater = locationSearchTable

当我单击 segueTableViewController 中的单元格时,它会将我转到详细页面,但该页面没有导航栏。但是,当我从另一个页面转到详细页面时,它有一个导航栏。几个月来我一直在试图找出原因,但我做不到。 enter image description here

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "GOTOPOST" {

if let IndexPaths = self.followUsersTableView.indexPathForSelectedRow {

self.navigationController?.isNavigationBarHidden = false

let vc = segue.destination as! BookDetailsViewController
}}}

最佳答案

请添加分镜关系(show)。 Storyboard添加标识符值“SegueTableViewController”。导航 Controller 应该在 Search storyboard referans 中

enter image description here

关于ios - segue 后导航栏丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46675713/

25 4 0