I have built a loader screen that displays a loading message and a uiprogresview whilst 4 separate data refresh methods are running - each data refresh method has a completed function - which basically adds .25 to the loader as follows -
self.loaderProgress.progress = self.loaderProgress.progress + 0.25;
I want to apply a method that will re-direct from the loader page to the homepage when all refresh methods are complete (when the loader reaches 1).
I'm not sure how to monitor this figure or trigger this method - can anyone recommend a good solution?