gpt4 book ai didi

objective-c - 警告 : passing argument 1 of 'CGPathMoveToPoint' discards qualifiers from pointer target type

转载 作者:行者123 更新时间:2023-12-03 17:29:47 24 4
gpt4 key购买 nike

我不断收到此警告警告:传递“CGPathMoveToPoint”的参数 1 会丢弃指针目标类型中的限定符

我正在这样调用函数

const CGAffineTransform m = CGAffineTransformIdentity;
CGPathMoveToPoint(path, &m , nextPos.x, nextPos.y);

我已经尝试过了

CGPathMoveToPoint(path, NULL , nextPos.x, nextPos.y);

CGAffineTransform m = CGAffineTransformIdentity;
CGPathMoveToPoint(path, &m , nextPos.x, nextPos.y);

但是我总是遇到这个错误,我该如何摆脱它?

最佳答案

警告是关于参数 1 的,但所有变化都在参数 2 上。尝试更改参数 1,path — 可能是为了摆脱流氓 const — 并且这应该可以解决它。

关于objective-c - 警告 : passing argument 1 of 'CGPathMoveToPoint' discards qualifiers from pointer target type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3114677/

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