NetNewsWire/iOS/MainWindow/Timeline/Cell/MainUnreadIndicatorView.swift

20 lines
363 B
Swift
Raw Normal View History

//
// MainUnreadIndicatorView.swift
// NetNewsWire
//
// Created by Brent Simmons on 2/16/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
import UIKit
final class MainUnreadIndicatorView: UIView {
2019-11-02 20:15:48 -05:00
override func layoutSubviews() {
super.layoutSubviews()
layer.cornerRadius = frame.size.width / 2.0
clipsToBounds = true
}
2025-01-22 22:18:09 -08:00
}