Tagged Questions
0
votes
2answers
139 views
NSNumber and float - type casting oddity
In my application I am using an external API which communicates using json. Today I encountered strange (it may be strange just due to my inexperience in iOS) behavior between floats and NSNumbers. ...
0
votes
2answers
121 views
Objective C float is not showing all decimals
I'm passing a float to a method but it's not showing all decimals. I have no idea why this is happening.
Here's an example:
[[LocationApiCliente sharedInstance] ...
0
votes
1answer
110 views
UISlider value, converted to NSNumber, = -1.10311e-146
AI have a slider, I'm saving it's value to user defaults, and then grabbing that number in a different view. I'm then converting that float to an NSNumber for use in a CiRadialGradient filter.
I'm ...
0
votes
2answers
113 views
Creating NSNumber from another NSNumber behavior?
I'm trying to insert an NSNumber as a float value, into an NSArray, containing the floatValue from another NSNumber. I'm able to create the array fine, but when I access the object, it appears to ...
-1
votes
1answer
249 views
Objective-C, passing float as parameter
I found this problem, which is very weird.
- (void)imageMove:(float)xx y:(NSInteger)yy
{
NSLog(@"xx=%f,----yy=%d",xx,yy);
}
when I call this function:
[self imageMove:50 y:50];
the log ...
0
votes
1answer
2k views
NSNumber and NSFloat
Why wont this output 5 to the console? It is outputting 0?!
settingsData.sensitivitySettingValue is an NSNumber defined in a model class.
- (void)viewDidLoad
{
[super viewDidLoad];
float ...
0
votes
3answers
88 views
Slider Not Behaving As I Would Expect
I have a slider that changes a float from 1 to 10 but I want to save this value and use it across all view controllers so I have saved that float as an NSNumber in a model class ...
2
votes
5answers
1k views
NSNumber and float?
I am trying to set an NSNumber as a float value that has been loaded using NSUserDefaults but i'm getting an error. I can't understand why...?
Here's my code:
[settingsData.sensitivitySettingValue ...
5
votes
4answers
789 views
Loss of precision converting 'float' to NSNumber, back to 'float'
I seem to be encountering a strange issue in Objective-C converting a float to an NSNumber (wrapping it for convenience) and then converting it back to a float.
In a nutshell, a class of mine has a ...
0
votes
2answers
618 views
Converting NSNumber to float is throwing me “uncaught exception 'NSInvalidArgumentException'”
I am trying to take EXIF data from the iPhone to calculate brightness. I need to access two specific NSNumber's ExifExposureTime and ExifISOSpeed to be converted to floats, but when I try to convert ...
0
votes
3answers
5k views
String to float in objective c
I have a parser returning some string value I'd like to use as parameter for my class instance initialisation.
I have a method asking two NSString and a float value, but I can't convert the string to ...
2
votes
1answer
1k views
Objective-C - Program received signal: “EXC_BAD_ACCESS”. with (NSNumber floatValue)
I am getting a Program received signal: “EXC_BAD_ACCESS”. when using the following code.
searchResultFileSize is declared as an NSNumber in my interface. I wasn't sure what property to set it as. ...
0
votes
1answer
512 views
Coredata Float number becomes zero
I have a problem I cannot solve with a Core Data entity.
In my entity there are two relations (whoHasToPay, whoHasToBePaid) and an attribute (howMuch).
This is the code in which I insert the record ...
1
vote
2answers
110 views
NSArry of floats issue
Im trying to create an NSArray of floats. However, once the value is added to the arrays it is alway 0.0000000.
What am i doing wrong?
NSLog(@"percent: %f" , percent); prints the correct value ...
0
votes
2answers
455 views
Issue with NSNumber -initWithDouble and resulting values
I'm using NSNumber to store various values, but sometimes run into issues when doing calculations with the values and initializing new NSNumber objects for the results. I've figured out how to ...
2
votes
5answers
334 views
53 * .01 = .531250
I'm converting a string date/time to a numerical time value. In my case I'm only using it to determine if something is newer/older than something else, so this little decimal problem is not a real ...