Drawing a checkmark NSString with UIKit doesn't respect fill color
问题 I'm trying to draw a checkmark in green with UIKit, but it is drawn in black instead. Here is the code: [[UIColor greenColor] set]; [@"✔" drawAtPoint:CGPointZero withFont:[UIFont systemFontOfSize:[UIFont systemFontSize]]]; Other strings are properly drawn in green with this method. I suspect that the checkmark glyph contains color information that overrides my choice of fill color, but drawing the same glyph with color in an UIWebView works. Is there a way to get the checkmark drawn in green