UIActivityIndicatorView---iOS-Apple苹果官方文档翻译
本系列所有开发文档翻译链接地址:
iOS7开发-Apple苹果iPhone开发Xcode官方文档翻译PDF下载地址
UIActivityIndicatorView
activityIndicatorViewStyle
设置指示器的样式
UIActivityIndicatorViewStyleWhiteLarge
UIActivityIndicatorViewStyleWhite (默认样式)
UIActivityIndicatorViewStyleGray
2.hidesWhenStopped
当停止动画的时候,是否隐藏。默认为YES。
3. 实例化指示器对象,根据样式设置尺寸,不需要手动设置。
-(id)initWithActivityIndicatorStyle:(UIActivityIndicatorViewStyle)style;
4.开启动画
- (void)startAnimating;
5.关闭动画
- (void)stopAnimating;
6.是否在动画
- (BOOL)isAnimating;
7. UIActivityIndicatorView使用注意
7.1初始化的时候不需要设置尺寸,设置尺寸也没有效果。
7.2 必须调用startAnimating才会显示UIActivityIndicatorView
// 初始化指示器
//技术博客http://www.cnblogs.com/ChenYilong/ 新浪微博http://weibo.com/luohanchenyilong
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
// 设置指示器位置
indicator.center = CGPointMake(self.view.frame.size.width * 0.5, self.view.frame.size.height * 0.5);
// 开启动画,必须调用,否则无法显示
[indicator startAnimating];
[self.view addSubview:indicator];
//转载请注明出处--本文永久链接:http://www.cnblogs.com/ChenYilong/p/3495696.html
本文对应pdf文档下载链接,猛戳—>:https://www.evernote.com/shard/s227/sh/104f66d3-c781-4ace-a922-a640802ff7d2/b869cfa60eb6331a9b3234c53e414205
本系列所有开发文档翻译链接地址:iOS7开发-Apple苹果iPhone开发Xcode官方文档翻译PDF下载地址
作者:
出处:http://www.cnblogs.com/ChenYilong/(点击RSS订阅)
本文版权归作者和博客园共有,欢迎转载,
但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。