码迷,mamicode.com
首页 > 其他好文 > 详细

UIActivityIndicatorView

时间:2017-04-12 14:59:57      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:声明   stop   elf   暂停   对象   make   str   nbsp   cti   

 
//声明对象
@property (nonatomic,strong) UIActivityIndicatorView *activityindicator;
 
 
self.activityindicator = [[UIActivityIndicatorViewalloc] initWithFrame:CGRectMake((self.view.frame.size.width-100)/2.0, self.view.frame.size.height/2.0, 100, 100)];
    self.activityindicator.backgroundColor = [UIColor colorWithWhite:0.5 alpha:0.5];
    //设置风格
    self.activityindicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
    //一个布尔值,用于控制在动画停止时是否隐藏接收者
    self.activityindicator.hidesWhenStopped = YES;
    //启动
    [self.activityindicator startAnimating];
    //暂停
    //[self.activityindicator stopAnimating];
    //状态
    //self.activityindicator.isAnimating;
    //设置活动指标的颜色
    self.activityindicator.color = [UIColor blueColor];
   
   
    [self.view addSubview:self.activityindicator];
    
 

UIActivityIndicatorView

标签:声明   stop   elf   暂停   对象   make   str   nbsp   cti   

原文地址:http://www.cnblogs.com/iQingYang/p/6699138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!