i have a class SpinnerController that have method for activity indicator
-(void)StartSpinner
{
[spinner startAnimating];
spinner.hidden=YES;
spinner = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(141.0, 190.0,
80.0, 80.0)];
[self.view addSubview:spinner];
NSLog(@"Spinner running");
}
-(void)StopSpinner
{
[spinner stopAnimating];
spinner = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(141.0, 190.0, 80.0,
80.0)];
[self.view addSubview:spinner];
}
i have 8 other viewControllers , i want to use activity indicator using above functions .
how can i do this ?
You can create a shared instance of activity indicator. It will help you to create single instance and manage throughout the code. You can refer MBProgressHUD code.