Make the progress view have rounded ends.

This commit is contained in:
Maurice Parker
2019-10-29 19:52:21 -05:00
parent 2fa43fb1e9
commit 91d5e809e4
3 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
//
// RoundedProgressView.swift
// NetNewsWire
//
// Created by Maurice Parker on 10/29/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import UIKit
class RoundedProgressView: UIProgressView {
override func layoutSubviews() {
super.layoutSubviews()
subviews.forEach { subview in
subview.layer.masksToBounds = true
subview.layer.cornerRadius = bounds.height / 2.0
}
}
}