I am trying to map a complex json object to my objects
my json contains a property that is a true or false value:
object {
rootProp2 = 1; <== fails to get mapped (this is a BOOL object)
} to object result: (null), (null),(null),(null) with object mapping (null)
how do i tell restkit to map rootProp2 to a BOOL value
it stays as 0, even though server returns "true" for this value
why arent my BOOL values mapped correctly ?