2014-04-19 147 views
0

我正在創建一個繪圖應用程序,我想集成NKO-Colour-Picker,但問題是我想使用選取器中的UIColor作爲筆觸顏色,當用戶在我的UIView上繪圖時。設置筆觸顏色

我該怎麼做,因爲CGContextSetRGBStrokeColor編碼的RGB值不是UIColor

目前,我有這樣的:

CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), red, green, blue, 1); 

任何幫助,將不勝感激。

回答

3

用途:

UIColor *color = ... // your selected color 
CGContextSetStrokeColorWithColor(UIGraphicsGetCurrentContext(), color.CGColor); 

或者乾脆:

[color set]; 

或:

[color setStroke]; 
+0

CGContextSetStrokeColorWithColor(UIGraphicsGetCurrentContext(),color.CGColor); - 完美的工作,非常感謝你! – DocAsh59