I am currently using iOS 7's UIProgressView
to keep track of user activity which progress both forward and backward. I am using the built-in animation settings such as: [self.myProgressBar setProgress: 0.50 animated: YES]
. I notice that the animation works well when progressing forward, but when something cause the progress to go backwards (in the app there are several things the user could do to regress), the animation does not happen. I was wondering if there is a work around to this, or whether by design choice animation could only go forward and not backward.
Thanks!