NetNewsWire/iOS/MainTimeline/Cell/MainUnreadIndicatorView.swift

20 lines
361 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
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
}
}