I have a CGPoint:
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]];
Thanks for your help because I am new to this.