views:

42

answers:

2

what type should my property be to work properly with core data float variables.

For example in order to get my class to work with int32 in core data i had to create NSNumber in my class. how about the float variables in core data?

+1  A: 

That would be an NSNumber as well.

Merrimack
A: 

NSNumber should do nicely.

CuriousRabbit