一直在 ios 中寻找 mod 运算符,就像%
在 c 中一样,但没有找到它。尝试了此链接中的答案,但它给出了相同的错误。我有一个浮点变量“rotationAngle”,其角度根据用户手指的移动不断增加或减少。像这样的一些事情:
if (startPoint.x < pt.x) {
if (pt.y<936/2)
rotationAngle += pt.x - startPoint.x;
else
rotationAngle += startPoint.x - pt.x;
}
rotationAngle = (rotationAngle % 360);
}
我只需要确保rotationAngle 不超过+/- 360 的限制。任何帮助任何身体。谢谢