Hi so this might seem like a very trivial question to most people but its really caught me off guard. I'm using storyboards to create my app and when a user signups for the first time they are taken through an "intro". I have a UIProgressView to show the user how far through they are and it's set in each view controller. However I need to get the value that the progress view is set to in my code and I keep getting incompatible type errors.
//viewcontroller.m
float complete = _progress;
//viewcontroller.h
@property (weak, nonatomic) IBOutlet UIProgressView *progress;
I've tried multiple other lines of codes, however this brings me the one with the least errors ! Help would be very much appreciated!