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 came across this issue, when fetching data from a REST service a value that should be conformed as string value is being delivered without the quotes when the value is a number. Causing the mapping to parse and assign a long value to a string property.
The problem raises when assigning the string property to almost any UIKit object property.
Hi,
I came across this issue, when fetching data from a REST service a value that should be conformed as string value is being delivered without the quotes when the value is a number. Causing the mapping to parse and assign a long value to a string property.
The problem raises when assigning the string property to almost any UIKit object property.
Here
"challenge_price_title": 333333,
is the offending key/value.The property is defined as NSString*
And here the debugger shows it has a value of type NSCFNumber
Would it be possible to enforce the correct data type is assigned to the properties?
The text was updated successfully, but these errors were encountered: