iOS - 點擊UIButton不變灰,button的image不變灰

 

要想讓uibutton點擊不變灰
初始化的時候就不能
        UIButton *button = [[UIButton alloc]init];

初始化的時候醬紫,能夠保證button點擊時不變灰
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

若是隻作了上面的button不會變灰,可是圖片還會變灰,下面的能夠保證圖片不變灰
        buttomButton.adjustsImageWhenHighlighted = NO;
相關文章
相關標籤/搜索