I have a UIProgressView and a UILabel.
Now I'm trying to set the progress in the label as a precentage.
This doesn't work, can someone tell me how to do this?
Edit:
I also have a UITextField of which I can set the text using:
I got this from a tutorial but I get the error:
"control reaches end of non-void function"
When I changed it to a void function I got the same error without the "non"?
How could I do this?
Now I'm trying to set the progress in the label as a precentage.
Code:
[progressLabel setText:myProgress.progress];
This doesn't work, can someone tell me how to do this?
Edit:
I also have a UITextField of which I can set the text using:
Code:
- (IBOutlet)copy:(id)sender
{
[textLabel setText:[textField text]];
}
I got this from a tutorial but I get the error:
"control reaches end of non-void function"
When I changed it to a void function I got the same error without the "non"?
How could I do this?