gpt4 book ai didi

ios - CGPoint 编译器错误

转载 作者:行者123 更新时间:2023-11-28 15:44:54 25 4
gpt4 key购买 nike

我试过写一个表达式:

 var  moveDifference: CGPoint = CGPoint(touchPoint.x - self.anchorPointInPoints().x, touchPoint.y - self.anchorPointInPoints().y)

但是 xcode 发誓:

Argument labels '(_:, _:)' do not match any available overloads

请帮助解决该问题。

提前致谢。

最佳答案

您在 CGPoint 初始化程序中错过了参数标签:

CGPoint(x: ..., y: ...)

此外:感谢类型推断,您真的不需要重新声明您的 var 类型:

var moveDifference = CGPoint(...

关于ios - CGPoint 编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43253144/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com