Explorar o código

set tableview delegate and datasource in ChatViewControllerNew.loadView()

cyberta %!s(int64=4) %!d(string=hai) anos
pai
achega
945c51e656
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      deltachat-ios/Chat/ChatViewControllerNew.swift

+ 2 - 0
deltachat-ios/Chat/ChatViewControllerNew.swift

@@ -108,6 +108,8 @@ class ChatViewControllerNew: UITableViewController {
 
     override func loadView() {
         self.tableView = ChatTableView(messageInputBar: self.disableWriting ? nil : messageInputBar)
+        self.tableView.delegate = self
+        self.tableView.dataSource = self
         self.view = self.tableView
     }