Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.55 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // Hintergund
  2.  
  3. loaderBG = [[UIImageView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 80.0f, 80.0f)];
  4.         loaderBG.image = [UIImage imageNamed:@"loaderBG.png"];
  5.         [loaderBG setCenter:CGPointMake(160.0f, 208.0f)];
  6.         [self.view addSubview:loaderBG];
  7.         [loaderBG release];
  8.  
  9.  
  10. // Activity Indicator
  11.  
  12. activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
  13.         [activityIndicator setCenter:CGPointMake(160.0f, 208.0f)];
  14.         [self.view addSubview:activityIndicator];
  15.        
  16.         [activityIndicator release];