.h:

  UIActivityIndicatorView* progressView;

.m:

  // show the waiting symbol

   progressView = [[UIActivityIndicatorView alloc]

   initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

  [progressView setCenter:CGPointMake(160.0f, 240.0f)];

  [progressView startAnimating];

  [self.view addSubview:progressView];


  // dismiss the waiting symbol

  [progressView removeFromSuperview];

  [progressView stopAnimating];

  [progressView release];


posted on 2010-05-24 12:29  eagley  阅读(598)  评论(0编辑  收藏  举报