OS X 的 UIGraphicsGetCurrentContext() 等价物是什么?
What is the UIGraphicsGetCurrentContext() equivalent for OS X?
标题说明了一切。
我想弄清楚 UIGraphicsGetCurrentContext()
对 OS X 的等价物是什么。
[NSGraphicsContext currentContext].CGContext
.
(-CGContext
属性在10.10及以后的版本中可用;在更早的版本中,您可以使用graphicsPort
。)
对于Swift:
NSGraphicsContext.currentContext()?.CGContext
为了完整起见,在Swift 4中,语法是:
NSGraphicsContext.current?.cgContext
标题说明了一切。
我想弄清楚 UIGraphicsGetCurrentContext()
对 OS X 的等价物是什么。
[NSGraphicsContext currentContext].CGContext
.
(-CGContext
属性在10.10及以后的版本中可用;在更早的版本中,您可以使用graphicsPort
。)
对于Swift:
NSGraphicsContext.currentContext()?.CGContext
为了完整起见,在Swift 4中,语法是:
NSGraphicsContext.current?.cgContext