作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个方法:
- (CGPoint) calculateVectorBetweenThisPoint:(CGPoint)firstPoint andThisPoint:(CGPoint)secondPoint
{
float xDif = firstPoint.x - secondPoint.x;
float yDif = firstPoint.y - secondPoint.y;
return CGPointMake(xDif, yDif);
}
我尝试按如下方式调用它:
- (float) angleBetweenThisPoint:(CGPoint)firstPoint andThisPoint:(CGPoint)secondPoint
{
// COMPILE ERROR HERE: Invalid Initializer
CGPoint vector = [self calculateVectorBetweenThisPoint:firstPoint andThisPoint:secondPoint];
return atan2(vector.x, vector.y);
}
但是我在尝试使用以下方法时遇到编译错误:“无效的初始化程序”。
我做错了什么?
最佳答案
在使用之前是否声明了 calculateVectorBetweenThisPoint:andThisPoint:
?如果不是,编译器将假定返回类型为 id
,这对于放入 CGPoint
中绝对是无效的。
关于iphone - 我在这里犯了什么愚蠢的菜鸟错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3185591/
我是一名优秀的程序员,十分优秀!