Dies ist der Obj-C-Code:
CGContextSetStrokeColorWithColor(context, [[UIColor lightGrayColor] CGColor]);
Wie schreibe ich es schnell.
objective-c
swift
colors
uicolor
Shakti Chauhan
quelle
quelle
CGContextSetStrokeColorWithColor(context,UIColor.lightGrayColor.CGColor)
Antworten:
quelle
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:
Und es ist lustig, diese "hellgraue" Antwort hilft mir tatsächlich, auch Code zu debuggen! Danke!
quelle