Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to format float to 2 decimals in objective C

I have a string that I'm converting to a float that I want to check for values in an if statement.

The original float value is the iPhone's trueHeading that is returned from the didUpdateHeading method. When I convert the original float to a string using @"%.2f" it works perfectly, but what I'm trying to do is convert the original float number to the same value. IF I just convert the string to [string floatValue] I get the same original float number, and I don't want that.

To make it short and simple, how do I take an existing float value and just get the first 2 decimals?

like image 520
Raphael Caixeta Avatar asked Dec 29 '22 18:12

Raphael Caixeta


1 Answers

round( x * 100.0 ) / 100.0;
like image 66
drawnonward Avatar answered Dec 31 '22 07:12

drawnonward