尝试像这样创建CGMutablePath()
:
let path = CGMutablePath()
CGPathMoveToPoint(path, nil, 30, 0)
但是编译器会继续给我以下错误:
'nil' not compatible with expected argument type 'UnsafePointer<CGAffineTransform>'
。我究竟做错了什么?我似乎在网上找不到其他东西。(是的,我尝试过将Ints转换为CGFloats,但似乎没有什么不同。)
最佳答案
尝试这个:
let path = CGMutablePath()
path.move(to: CGPoint(x: 30, y: 0))
CGPath API现在已作为Swift 3中的实例方法导入。
您可以通过Command单击
CGMutablePath
来检查它们。或参见the latest reference of CGMutablePath。