I have trouble with modifying my UIView height at launch.
I have to UIView and I want one to be screen size * 70 and the other to fill the gap.
here is what
For a progress bar kind of thing, in Swift 4
I follow these steps:
@IBOutlet var progressBar: UIView!var progressBarWidth: Int = your valueprogressBar.frame.size.width = CGFloat(progressBarWidth)progressBarWidth += your value for auto increase the width every time user touches a button.