I want to set the value of UIProgressView manually. I defined the outlet for it:
@property (strong, nonatomic) IBOutlet UIProgressView *progressView;
And set its value in one of my functions:
[self.progressView setProgress:.5];
But I am getting this error:
this class is not key value coding-compliant for the key progress line
Any body help me in this?