Alla Reinsch пре 7 година
родитељ
комит
b61846af5f
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      deltachat-ios/NewChatViewController.swift

+ 3 - 1
deltachat-ios/NewChatViewController.swift

@@ -17,7 +17,7 @@ class NewChatViewController: UITableViewController {
     weak var chatDisplayer: ChatDisplayer?
     weak var chatDisplayer: ChatDisplayer?
 
 
     override func viewDidLoad() {
     override func viewDidLoad() {
-        super.viewDidLoad()
+        //super.viewDidLoad()
 
 
         title = "New Chat"
         title = "New Chat"
         navigationController?.navigationBar.prefersLargeTitles = true
         navigationController?.navigationBar.prefersLargeTitles = true
@@ -98,6 +98,8 @@ class NewChatViewController: UITableViewController {
         cell.initialsLabel.text = Utils.getInitials(inputName: contact.name)
         cell.initialsLabel.text = Utils.getInitials(inputName: contact.name)
         let contactColor = Utils.color(row: contactRow, colors: Constants.chatColors)
         let contactColor = Utils.color(row: contactRow, colors: Constants.chatColors)
         cell.setColor(contactColor)
         cell.setColor(contactColor)
+        
+        cell.accessoryType = .detailDisclosureButton
         return cell
         return cell
     }
     }