Assuming you've got a view controller set up, and would like to add a UIActivityIndicator to it. Here's how you could do it
//assume you've got a member variable called indicator, which you can use later to clean up:
For your interface (.h file):
UIActivityIndicator *indicator;
For your implementation (.m file):
Start the Animation
CGRect b = self.view.bounds;
indicator = [[UIActivityIndicator alloc] initWithActivityIndicatorStyle:
UIActivityIndicatorStyleWhite];
//center the indicator in the view
indicator.frame = CGRectMake((b.size.width - 20) / 2, (b.size.height - 20) / 2, 20, 20);
[self.view addSubview: indicator];
[indicator release];
[indicator startAnimating];
Stop the Animation
[indicator removeFromSuperview];
indicator = nil;