I need to round a float value and convert it into an NSInteger value.
For example:
float f = 90.909088;
I want the result to be 91. How to get rid of this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
One of the following C math functions might work for you:
To get more documentation, open a terminal session and type (for example)
I pick lround as an example because I think that is the one you want.