Dies ist der Obj-C-Code:
CGContextSetStrokeColorWithColor(context, [[UIColor lightGrayColor] CGColor]);
Wie schreibe ich es schnell.
Dies ist der Obj-C-Code:
CGContextSetStrokeColorWithColor(context, [[UIColor lightGrayColor] CGColor]);
Wie schreibe ich es schnell.
CGContextSetStrokeColorWithColor(context,UIColor.lightGrayColor.CGColor)
Antworten:
// Original answer.
var newColor = UIColor.lightGrayColor().CGColor
// Swift 3 version
var newColor = UIColor.lightGray.cgColor
Seltsamerweise hat sich mit der Entwicklung von Swift auf 3.0 auch die Antwort weiterentwickelt. Ich bin darauf gestoßen, als ich Objective C-Code in Swift konvertiert habe. Ich hoffe das hilft jemandem! :-) Hier ist was es heute ist:
context.setStrokeColor(UIColor.lightGray.cgColor)
Und es ist lustig, diese "hellgraue" Antwort hilft mir tatsächlich, auch Code zu debuggen! Danke!