- (void)useX:(double)x {
self.XVelocity = x;
//This is called by the app delegate every 1/60 times a second
printf("%f",x);
}
在另一种方法中我使用
- (void)update {
printf("%f",self.XVelocity);
}
和self.XVelocity等于0,我该如何修复
答案 0 :(得分:0)
尝试删除“自我”。看看会发生什么。