NetNewsWire/iOS/Timeline/Cell/UnreadIndicatorView.swift
2024-02-26 08:37:15 -08:00

20 lines
353 B
Swift

//
// UnreadIndicatorView.swift
// NetNewsWire
//
// Created by Brent Simmons on 2/16/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
import UIKit
class UnreadIndicatorView: UIView {
override func layoutSubviews() {
super.layoutSubviews()
layer.cornerRadius = frame.size.width / 2.0
clipsToBounds = true
}
}