- (void)viewDidLoad {
[super viewDidLoad];
// 创建一个UIActivityIndicatorView,大小是固定的
UIActivityIndicatorView *aiv = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
// 设置中心点
aiv.center = CGPointMake(200, 300);
// 颜色
aiv.color = [UIColor greenColor];
// 让UIActivityIndicatorView转起来
[aiv startAnimating];
// 5秒之后,让UIActivityIndicatorView停止动画
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[aiv stopAnimating];
});
[self.view addSubview:aiv];
self.view.backgroundColor = [UIColor grayColor];
}
相关文章
- 03-06UI第十七节——UIScrollView
- 03-06UI第十一节——UIActivityIndicatorView
- 03-06数据结构第十一节
- 03-06第十一节 CSS引入的三种方式
- 03-06第十一节:SQLServer事务写法和事务隔离级别
- 03-06第十章 设计用户界面 之 构建UI布局
- 03-06余老师带你学习大数据框架全栈第十三章Hudi第一节Hudi介绍
- 03-06python(迭代)第十一节
- 03-06第十一节 课时154-162
- 03-06第十一节:SQL 语言分类