swift3 – swift 3和CGContextEOClip

swift3 – swift 3和CGContextEOClip,第1张

概述当我将我的代码转换为 swift 3时,我收到了这个错误: error: 'CGContextEOClip' is unavailable: Use clip(using:) CGContextEOClip(context!); ^~~~~~~~~~~~~~~CoreG 当我将我的代码转换为 swift 3时,我收到了这个错误:

error: 'CGContextEOClip' is unavailable: Use clip(using:)                                CGContextEOClip(context!);                                ^~~~~~~~~~~~~~~CoreGraphics.CGContextEOClip:2:13: note: 'CGContextEOClip' has been explicitly marked unavailable herepublic func CGContextEOClip(_ c: CGContext?)

我不知道如何使用剪辑(使用:),我没有看到任何与它相关的文档.
有任何想法吗.
谢谢
雷扎

解决方法 在swift3中,CGContextEOClip和CGContextClip现在是CGContext类型的方法

let context = /*your context*/context.clip(using: .evenOdd) // for CGContextEOClipcontext.clip(using: .winding) // for CGContextClip
总结

以上是内存溢出为你收集整理的swift3 – swift 3和CGContextEOClip全部内容,希望文章能够帮你解决swift3 – swift 3和CGContextEOClip所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1009735.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存