22 lines
436 B
Swift
22 lines
436 B
Swift
//
|
|
// ProgressBarView.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Panth Patel on 5/7/19.
|
|
// Copyright © 2019 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class ProgressBarView: ViewConstrainingView {
|
|
|
|
/*
|
|
// Only override draw() if you perform custom drawing.
|
|
// An empty implementation adversely affects performance during animation.
|
|
override func draw(_ rect: CGRect) {
|
|
// Drawing code
|
|
}
|
|
*/
|
|
|
|
}
|