浏览代码

Navigating to ChatVC hides tab-bar

Bastian van de Wetering 7 年之前
父节点
当前提交
7f9c57318e
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      deltachat-ios/ChatListController.swift

+ 1 - 0
deltachat-ios/ChatListController.swift

@@ -43,6 +43,7 @@ extension ChatListController: ChatPresenter {
     func displayChat(index: Int) {
         let chatVC = ChatViewController()
         chatVC.title = chats[index].0
+        chatVC.hidesBottomBarWhenPushed = true 
         self.navigationController?.pushViewController(chatVC, animated: true)
     }
 }