Explorar el Código

set tableview delegate and datasource in ChatViewControllerNew.loadView()

cyberta hace 4 años
padre
commit
3bab55adc5
Se han modificado 1 ficheros con 2 adiciones y 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
     }