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的尺寸是(37,37)
UIActivityIndicatorViewStyleWhite的尺寸是(22,22)
以上是关于iOS UIActivityIndicatorView的主要内容,如果未能解决你的问题,请参考以下文章