소스 검색

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)
     }
 }