RESTKITを使用して、サーバー側のプロパティをクライアント側のプロパティにマップしています。
RESTKITがサーバーからクライアント側のNSUIntegerプロパティにNULL値をマップしようとすると、[NSNullunsignedIntValue]エラーが発生します。
例えば:
//User object property "new_questions_count" defined on client side with NSUInteger property
@interface User : NSObject <NSCoding>
{
NSUInteger new_questions_count;
}
@property (nonatomic, assign) NSUInteger new_questions_count;
@end
//User Object Mapping - mapping "new_question_count" to server's json value
RKObjectMapping* userMapping = [RKObjectMapping mappingForClass:[User class]];
[userMapping mapAttributes:@"new_question_count",nil];
[provider setMapping:userMapping forKeyPath:@"user"];
上記のシナリオでは、json値が "new_questions_count":nullの場合、[NSNullunsignedIntValue]エラーが発生します。
サーバー側の実装を変更せずに、クライアント側でチェックを実行してこれを解決するにはどうすればよいですか?