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

Button 文本显示闪动问题解决

时间:2016-09-09 11:57:43      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

描述:定时器改变 UIButton 文本显示时出现闪动 !

解决:

方案一:UIButton 的 UIButtonType 类型设置为 UIButtonTypeCustom 。PS:使用Xib或SB创建 UIButton 时默认 UIButtonTypeSystem 类型 。

方案二:若  UIButtonType 已经设置 UIButtonTypeSystem 类型 ,titleLabel.text 与 setTitle 同时设置 。

- (void)viewDidLoad {
    [super viewDidLoad];
    
    _btn = [UIButton buttonWithType:UIButtonTypeSystem];
    [_btn setFrame:CGRectMake(100, 100, 100, 30)];
    _btn.backgroundColor = [UIColor redColor];
    [self.view addSubview:_btn];
    _countDown = 60;
    [NSTimer scheduledTimerWithTimeInterval:1.0
                                     target:self
                                   selector:@selector(timeCount:)
                                   userInfo:nil repeats:YES];
}

#pragma mark ------ timeCount

- (void)timeCount:(NSTimer *)timer{

    if (_countDown > 0) {
        
        _countDown --;
        // 同时设置
        _btn.titleLabel.text = [NSString stringWithFormat:@"%ld 计时",(unsigned long)_countDown];
        [_btn setTitle:[NSString stringWithFormat:@"%ld 计时",(unsigned long)_countDown] forState:UIControlStateNormal];
        
    } else {
        
        [timer invalidate];
        timer = nil;
    }
    
    
}

 

Button 文本显示闪动问题解决

标签:

原文地址:http://www.cnblogs.com/itwyhuaing/p/5855776.html

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