iOS button背景顏色狀態設定

jacker_2014發表於2016-11-22

轉自:http://blog.csdn.net/qq_20176153/article/details/52036422


關於button背景顏色(高亮狀態)和(普通狀態)

[self.confirmBtn setBackgroundImage:[Function imageWithColor:RGB(24415271)] forState:UIControlStateNormal];



封裝類方法掉用:

//  顏色轉換為背景圖片

+ (UIImage *)imageWithColor:(UIColor *)color

{

    CGRect rect = CGRectMake(0.0f0.0f1.0f1.0f);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    

    CGContextSetFillColorWithColor(context, [color CGColor]);

    CGContextFillRect(context, rect);

    

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    

    return image;

}

相關文章