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

@@ -0,0 +1,24 @@
//
// MasterFeedTitleView.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 9/21/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import UIKit
class MasterTimelineTitleView: UIView {
@IBOutlet weak var imageView: UIImageView! {
didSet {
if let imageView = imageView {
imageView.layer.cornerRadius = 2
imageView.clipsToBounds = true
}
}
}
@IBOutlet weak var label: UILabel!
}