尝试创建一个CGMutablePath():
let path = CGMutablePath() CGPathMoveToPoint(path,nil,30,0)
但编译器不断给我以下错误:’nil’不兼容期望的参数类型’UnsafePointer< CGAffineTransform>‘。我究竟做错了什么?我似乎没有找到任何其他在线。
(是的,我已经尝试将Ints转换为CGFloats,但似乎并没有什么变化。)
尝试这个:
原文链接:https://www.f2er.com/swift/320670.htmllet path = CGMutablePath() path.move(to: CGPoint(x: 30,y: 0))
CGPath API现在作为Swift 3中的实例方法导入。
您可以使用Command单击CGMutablePath来检查它们。
或见the latest reference of CGMutablePath。