NetNewsWire/iOS/MainTimeline/Cell/MainUnreadIndicatorView.swift
2025-01-02 22:18:52 -08:00

20 lines
361 B
Swift

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