I have a custom circular progress bar in UITableViewCell
.
[progressView setAnimationDuration:10.0];
[progressView setProgress: 1.0 animated: YES];
To stop the progress at certain point I am using below code:
[progressView setProgress: 0.5 animated: YES];
Now I want to resume the progress from 0.5 to 1.0. How can I achieve this?