vote up 2 vote down star

Total newbie question but this is driving me mad! I try myInt = [myFloat integerValue]; and I get an error saying essentially integerValue doesn't work on floats. How do I do it?

flag
1  
floats are primitives, they are not objective-c objects therefore you can't use [myFloat integerValue] on it. if it doesn't extend NSObject, you can't pass messages to it. – seanalltogether Nov 14 '08 at 4:39
The overkill method is: [[NSNumber numberWithFloat:myFloat] integerValue] (but you should use cast, really) – porneL Jul 6 at 14:00

3 Answers

vote up 4 vote down

I'm pretty sure C-style casting syntax works in Objective C, so try that, too:

int myInt = (int) myFloat;

It might silence a compiler warning, at least.

link|flag
vote up 3 vote down

what's wrong with:

int myInt = myFloat;

bear in mind this'll use the default rounding rule, which is towards zero (i.e. -3.9f becomes -3)

link|flag
vote up 0 vote down

In support of unwind, remember that Objective-C is a superset of C, rather than a completely new language.

Anything you can do in regular old ANSI C can be done in Objective-C.

link|flag

Your Answer

Get an OpenID
or

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