I am using http communication in My iPhone app. I want to show a progress bar while it is loading data from server. How can I do it programmatically?
I just want a d
Add Property
@property (strong, nonatomic) IBOutlet UIActivityIndicatorView *indicator;
To Start Animating
[self.indicator startAnimating];
To Stop Animating
[self.indicator stopAnimating];