I have an issue of locking my screen whenever I try to refresh my page.
How can I load data from the server and add a spinner to the navigation bar (like instagram) without locking my screen?
To add spinner you can do something like
UIActivityIndicatorView *ai = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithCustomView:ai] autorelease];
[ai startAnimating];
[ai release];
What about locking? I didn't understand.
You might want to look at this open source project for what you need, several examples are there for you to consult.
The MBProgressHUD displays a translucent HUD with a progress indicator and some optional labels while work is being done in a background thread
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With