- 做專案經常遇到一個問題,給Button增加一個高亮狀態,如果公司有ui還好,可以讓ui給你切個高度狀態的圖片,沒有ui只能自己切圖或給按鈕新增背景顏色,但是這個處理起來有沒麻煩,並且一個專案不過能只有那麼一個button需要新增這個狀態顏色,所以自己也常試封裝一個button的背景顏色,上程式碼,如果哪位大神有好的建議也希望能告訴我,直接留言,謝謝
//這是繼承UIButton的擴充套件類
//UIButton+MHFillColor.h
@interface UIButton (MHFillColor)
- (void)ym_setBackgroundColor:(UIColor *)backgroundColor forState:(UIControlState)state;
@end
複製程式碼
//UIButton+MHFillColor.m
@implementation UIButton (MHFillColor)
- (void)ym_setBackgroundColor:(UIColor *)backgroundColor forState:(UIControlState)state
{
[self setBackgroundImage:[UIButton imageWithColor:backgroundColor] forState:state];
}
+ (UIImage *)imageWithColor:(UIColor *)color
{
CGRect rect = CGRectMake(0.0, 0.0, 1.0, 1.0);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, rect);
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
@end
複製程式碼