I am making an application that uses a progress bar.I would like to display the percentage of completion, but inserting a "%"
will interfere with the number that will be displayed.
This is what I have
[percentage setText:[NSString stringWithFormat: @"Progress: %.0f", progressBar.progress*100]];
& I would like to insert the "%"
at the end of the string.
Thanks for your help.