我有一个CG点:
ballVelocity = CGPointMake(kBallSpeedX,kBallSpeedX);
and i would like a label (xVelocityLabel) to view the "ballVelocity.x" value of the CGPoint. I have tried:
[xVelocityLabel setText:[NSString stringWithFormat:@"%@", ballVelocity.x]];
谢谢你的帮助 因为我是新来的