Advertisement
thieumao

Simple Loading iOS - Objective C

May 31st, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. UIActivityIndicatorView *spinner;    
  2. //-------------
  3. spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
  4.     spinner.activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;
  5.     [spinner setCenter:CGPointMake([UIScreen mainScreen].bounds.size.width / 2.0, [UIScreen mainScreen].bounds.size.height/2.0)];
  6.     [self.view addSubview:spinner];
  7. //--------------
  8.  [spinner startAnimating];
  9. //--------------
  10. [spinner stopAnimating];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement