动态改变button title时会出现闪动

今天发现动态改变button title时会出现闪动.很蛋疼的问题,后来经过反复尝试,发现一个解决方案.

dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);

timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);

dispatch_source_set_timer(timer, dispatch_walltime(NULL, 0), 1.0 * NSEC_PER_SEC,  0);

dispatch_source_set_event_handler(timer, ^{

NSInteger scondes = timeout % 60;

dispatch_async(dispatch_get_main_queue(), ^{

[_timerBtn setBackgroundColor:[UIColor blueColor]];

_timerBtn.titleLabel.text = [NSString stringWithFormat:@"%ld秒",scondes];

[_timerBtn setTitle:[NSString stringWithFormat:@"%ld秒",scondes] forState:UIControlStateNormal];

});

timeout --;

});

dispatch_resume(timer);

注意这个方法里

_timerBtn.titleLabel.text = [NSString stringWithFormat:@"%ld秒",scondes];

[_timerBtn setTitle:[NSString stringWithFormat:@"%ld秒",scondes] forState:UIControlStateNormal];

如果单独设置_timerBtn.titleLabel.text = [NSString stringWithFormat:@"%ld秒",scondes];赋值,label是不显示文字的.如果只设置[_timerBtn setTitle:[NSString stringWithFormat:@"%ld秒",scondes] forState:UIControlStateNormal];这个的话,就会出现闪动的效果..后来经过尝试,发现必须两个都存在,而且_timerBtn.titleLabel.text = [NSString stringWithFormat:@"%ld秒",scondes];这个要放在[_timerBtn setTitle:[NSString stringWithFormat:@"%ld秒",scondes] forState:UIControlStateNormal];前边,至于为什么这么做我也没找到合适的解释...

还有个方法就是用xib的时候button不用system改为custom,同理,代码用custom也不会闪

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容