NetNewsWire/iOS/Timeline/Cell/UnreadIndicatorView.swift

20 lines
353 B
Swift
Raw Normal View History

//
2024-02-26 17:37:15 +01:00
// UnreadIndicatorView.swift
// NetNewsWire
//
// Created by Brent Simmons on 2/16/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
import UIKit
2024-02-26 17:37:15 +01:00
class UnreadIndicatorView: UIView {
2019-11-03 02:15:48 +01:00
override func layoutSubviews() {
super.layoutSubviews()
layer.cornerRadius = frame.size.width / 2.0
clipsToBounds = true
}
}