iOS UIActivityIndicatorView

Posted 雨季的雾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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



















以上是关于iOS UIActivityIndicatorView的主要内容,如果未能解决你的问题,请参考以下文章

IO模型--阻塞IO,非阻塞IO,IO多路复用,异步IO

IO复用阻塞IO非阻塞IO同步IO异步IO

四种IO模型‘阻塞IO/非阻塞IO/信号驱动IO/异步IO‘

5种IO模型阻塞IO和非阻塞IO同步IO和异步IO

网络IO模型:同步IO和异步IO,阻塞IO和非阻塞IO

同步IO异步IO阻塞IO非阻塞IO之间的联系与区别