3
UIFont不會出現管理的顏色,有沒有辦法使用UIStringDrawing.h或專門更改字體顏色:UIStringDrawing更改字體顏色 - 可可觸摸
- (CGSize)drawInRect:(CGRect)rect withFont:(UIFont *)font
感謝
UIFont不會出現管理的顏色,有沒有辦法使用UIStringDrawing.h或專門更改字體顏色:UIStringDrawing更改字體顏色 - 可可觸摸
- (CGSize)drawInRect:(CGRect)rect withFont:(UIFont *)font
感謝
看看在UIColor
。具體做法是:
- (void) setFill;
例如:
[[UIColor redColor] setFill];
[myString drawInRect:rect withFont:font];
其它方法包括setStroke
,只是set
同時設置填充和中風。字體使用填充顏色。