For filling the Progress Bar, there're 2 objects connected to ViewController.swift file.
@IBOutlet var progBar: UIProgressView!
@IBAction func butPressed(sender: UIButton) {
self.progBar.progress += 0.1
But when I try to read the value of the bar has with the way below, nothing happens. Except the following message :
value <UIProgressView: 0x7ff85bd9eb00; frame = (85 128; 146 2); opaque = NO; autoresize = RM+BM; layer = <CALayer: 0x7ff85bd9ee70>>
println ("The value is \(progBar)")
How to solve that?