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

让UIButton点击不变灰

时间:2021-06-24 18:33:25      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:when   type   color   highlight   bsp   code   with   不能   点击   

 

 

 

要想让uibutton点击不变灰
初始化的时候就不能
        UIButton *button = [[UIButton alloc]init];

初始化的时候酱紫,能够保证button点击时不变灰
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

若是只作了上面的button不会变灰,可是图片还会变灰,下面的能够保证图片不变灰
        buttomButton.adjustsImageWhenHighlighted = NO;

 

让UIButton点击不变灰

标签:when   type   color   highlight   bsp   code   with   不能   点击   

原文地址:https://www.cnblogs.com/OIMM/p/14926873.html

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