There is some issue with value types in the objective-c generation.
This code generated doesn't compile:
This is the parameter fromX: (BOOL) fromX
In the method is adding:
if(fromX != nil) {
queryParams[@"fromX"] = fromX;
}
Implicit conversion of 'BOOL' (aka 'signed char') to 'id' is disallowed with ARC
There is some issue with value types in the objective-c generation.
This code generated doesn't compile:
This is the parameter fromX: (BOOL) fromX
In the method is adding:
if(fromX != nil) {
queryParams[@"fromX"] = fromX;
}
Implicit conversion of 'BOOL' (aka 'signed char') to 'id' is disallowed with ARC