iphone Core Data - What type of proprty for a float?
what type should my property be to work properly with core data float variables.
For example in 开发者_JAVA百科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?
That would be an NSNumber as well.
NSNumber should do nicely.
精彩评论