I'm new to Xcode and using Xcode 12 and storyboards and i'm trying to make a macOS app but i'm trying to to change the value of a progress bar, any help?
how to use a progress bar
You just have to:
progressBar.doubleValue = percent
if the progress bar is between 0 and 100, percent is a Double between those bounds.