iOS UIActivityIndicatorView

UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
    
    // 设置位置???颜色等
    indicator.tintColor = [UIColor greenColor];
    indicator.color = [UIColor greenColor];
    indicator.backgroundColor = [UIColor blackColor];
    indicator.center = CGPointMake(30, 30);
    indicator.layer.cornerRadius = 18.5;
    indicator.layer.masksToBounds = YES;
    
    UITableViewCell * cell = (UITableViewCell *)[collectionView cellForItemAtIndexPath:indexPath];
    
    [cell addSubview:indicator];
    //开始
    [indicator startAnimating];

  //停止
    [indicator stopAnimating];

  UIActivityIndicatorViewStyleWhiteLarge的尺寸是(3737
  UIActivityIndicatorViewStyleWhite的尺寸是(2222

原文地址:https://www.cnblogs.com/yujidewu/p/6103724.html