Hi there
basically, I'm stuck ha. I have a page where a video gets downloaded. It has a UIProgressView bar in it.
When the user selects a row in the table view it calls VideoPage *page = [[VideoPage alloc] initWithVideoId:[indexPath row]]
and then pushes that view controller onto the view stack. This page then starts the download, and in turn the progress view.
Now, if the user presses back on the navigation controller and goes back to the list of videos and then chooses the SAME row again it will init a new version of this page, meaning that the init of the page that is constantly updating the UIProgressView is lost forever.
Is there any way around this? I'm sorry if the question is vague. Basically if I have already init'd a view controller with videoId = 3 then I don't want to init another one, I want to just push the current one again, so that the UIProgressView is still showing.
Thanks for any help you can give me. :)