Add small icon to timeline title view

This commit is contained in:
Maurice Parker
2019-09-21 17:59:58 -05:00
parent e8a68511f1
commit 3cd33902cf
5 changed files with 91 additions and 1 deletions

View File

@@ -454,7 +454,12 @@ private extension MasterTimelineViewController {
func resetUI() {
title = coordinator.timelineName
navigationController?.title = coordinator.timelineName
if let titleView = Bundle.main.loadNibNamed("MasterTimelineTitleView", owner: self, options: nil)?[0] as? MasterTimelineTitleView {
titleView.imageView.image = coordinator.timelineFavicon
titleView.label.text = coordinator.timelineName
navigationItem.titleView = titleView
}
tableView.selectRow(at: nil, animated: false, scrollPosition: .top)
if dataSource.snapshot().itemIdentifiers(inSection: 0).count > 0 {