mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Add small icon to timeline title view
This commit is contained in:
24
iOS/MasterTimeline/MasterTimelineTitleView.swift
Normal file
24
iOS/MasterTimeline/MasterTimelineTitleView.swift
Normal 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!
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user