You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I I've noticed an issue when trying to enter a float value with a french UIKeyboardTypeDecimalPad.
In this case the string value is x,xxx and not x.xxx so [value floatValue] is just returning the decimal part.
What I suggest is to replace it by
I I've noticed an issue when trying to enter a float value with a french UIKeyboardTypeDecimalPad.
In this case the string value is x,xxx and not x.xxx so [value floatValue] is just returning the decimal part.
What I suggest is to replace it by
float floatValue = [[value stringByReplacingOccurrencesOfString:@"," withString:@"."] floatValue];
in
of FKFormMapper.m
Thanks for the good job
Regards
Nicolas
The text was updated successfully, but these errors were encountered: