Update the updated since label on every appearance

This commit is contained in:
Maurice Parker 2019-10-25 17:07:40 -05:00
parent 8304b174bf
commit 473053e813

View File

@ -60,22 +60,16 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner {
refreshControl!.addTarget(self, action: #selector(refreshAccounts(_:)), for: .valueChanged) refreshControl!.addTarget(self, action: #selector(refreshAccounts(_:)), for: .valueChanged)
configureToolbar() configureToolbar()
updateUI()
becomeFirstResponder() becomeFirstResponder()
} }
override func viewWillAppear(_ animated: Bool) { override func viewWillAppear(_ animated: Bool) {
navigationController?.title = NSLocalizedString("Feeds", comment: "Feeds") navigationController?.title = NSLocalizedString("Feeds", comment: "Feeds")
applyChanges(animate: false) applyChanges(animate: false)
updateUI()
super.viewWillAppear(animated) super.viewWillAppear(animated)
} }
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
}
// MARK: Notifications // MARK: Notifications
@objc func unreadCountDidChange(_ note: Notification) { @objc func unreadCountDidChange(_ note: Notification) {