5
的自定義邊框我做的UIButton爲圓形的自定義邊框的子類:Tintcolor中的UIButton
- (void)drawRect:(CGRect)rect
{
[[self layer] setCornerRadius:CORNER_RADIUS];
[[self layer] setMasksToBounds:YES];
[[self layer] setBorderWidth:1];
[[self layer] setBorderColor:self.tintColor.CGColor];
[self.imageView setTintColor:self.tintColor];
}
的問題是出現酥料餅時,自定義邊框不會有其他的控制與tintColor的相同的行爲:
我該如何處理呢?
非常感謝
它的工作!謝謝 ;) – fabrizotus