UIButton點選更改顏色

GabrielPanda發表於2018-01-24

程式碼如下:

[button setBackgroundImage:[UIImage imageNamed:@"pic1"] forState:UIControlStateNormal] 

[button setBackgroundImage:[UIImage imageNamed:@"pic2"] forState:UIControlStateHighlighted];
複製程式碼

如果想使用純色為背景色 可以使用如下程式碼:

-(UIImage*) imageWithColor:(UIColor*)color
{
    CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return image;
}
複製程式碼

相關文章