Changes
Page history
Update InboxViewController
authored
Mar 09, 2018
by
joscha1
Hide whitespace changes
Inline
Side-by-side
ui/InboxViewController.md
0 → 100644
View page @
571aa25f
The InboxViewController gets its data from the DataHandler in form of a Folder object.
Updates to the records are received via the NotificationCenter:
```
NotificationCenter.default.addObserver(forName: Notification.Name.NSManagedObjectContextDidSave, object: nil, queue: nil, using: {
[weak self] _ in
self?.tableView.reloadData()
})
```
It provides links to the displayed mails, all mails of a contact, the ContactView of a contact, and the ContactView of the user.
\ No newline at end of file