我在一个类中有一个CGPoint
声明,在我尝试检查它是否不等于,但我收到此错误:UIView
viewController
CGPoint
CGPointZero
Invalid operands to binary expression ('CGPoint' (aka 'struct CGPoint') and 'CGPoint')
这是 if 语句:
if (joystick.velocity != CGPointZero)
错误指向 != 我不知道为什么它会给我一个错误。
joystick
是UIView
类,CGPoint velocity
声明如下:
@property(nonatomic) CGPoint velocity;