Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

3 Answers

up vote 2 down vote accepted

Just change '%f' instead of '%@'.

[xVelocityLabel setText:[NSString stringWithFormat:@"%f", ballVelocity.x]];

I think it will be helpful to you.

share|improve this answer
He'll probably be better of with "%.2f" or similiar but +1 for correct answer. – rokjarc May 25 '12 at 15:24
this was exactly what i was looking for and i just copied and pasted and it worked perfectly. THX! – burkel May 25 '12 at 22:04

[xVelocityLabel setText:NSStringFromCGPoint(ballVelocity)];

share|improve this answer
ballVelocity.x // this is a float value.

So you have to convert it in NSString before set it on UILabel.

for set a value on xVelocityLabel, the value should be in string format. see this conversion-

NSString *strNumber = [[NSNumber numberWithFloat:ballVelocity.x] stringValue];

[xVelocityLabel setText:strNumber];

Thank you!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.