它可能是重复的。但我的问题是我将CGPointUtils.c/.h添加到我的项目中。我在.h文件中遇到错误。错误"_radiansToDegree" referenced from
就像 CGRect referenced from
错误消息。
我检查了代码中的所有内容都是正确的,它返回的 CGFloat 数据类型是 radiansToDegree(rads)。这是我得到错误的地方。
代码:
CGFloat angleBetweenPoints(CGPoint first, CGPoint second) {
CGFloat height = second.y - first.y;
CGFloat width = first.x - second.x;
CGFloat rads = atan(height/width);
return radiansToDegrees(rads);
在最后一行,错误在哪里?谁能给我一个解决方案。谢谢