728x90
Object-C Style
CGFloat red, green, blue, alpha;
red = 1.0f;
CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), red, green, blue, alpha);
//or
CGContextSetStrokeColorWithColor(UIGraphicsGetCurrentContext(), [[UIColor redColor] CGColor]);
Swift Style
let myUIColor = UIColor.purpleColor()
var r:CGFloat, g:CGFloat, b:CGFloat, a:CGFloat = 0
myUIColor.getRed(&r, green: &g, blue: &b, alpha: &a)
CGContextSetRGBStrokeColor(c, r, g, b, a)
// or
CGContextSetStrokeColorWithColor(myUIColor.CGColor);
728x90
'Developer > iOS' 카테고리의 다른 글
[iOS]iOS9 Sportlight 검색 추가하기 (0) | 2016.01.05 |
---|---|
[iOS]iOS9 Contacts 이용해 연락처, 주소록 가져오기 (0) | 2016.01.05 |
웹앱(하이브리드앱)의 앱스토어 통과(검수)하기 위한 기준 (0) | 2015.12.18 |
[iOS] iOS9 App Transport Security 설정법 (2) | 2015.12.17 |
[iOS]앱 설정 띄우기 (0) | 2015.12.17 |