オブジェクトマッピングのObjective Cでは、ライブラリDCKeyValueObjectMappingを使用しています
これが私のクラスです
#import <Foundation/Foundation.h>
@interface City : NSObject
@property(nonatomic, strong) NSString *id;
@property(nonatomic, strong) NSString *title;
@property(nonatomic, strong) NSString *slug;
@property(nonatomic) int country;
@property(nonatomic) Boolean isMain;
@property(nonatomic, strong) NSString *description;
@property(nonatomic, strong) NSString *position;
@property(nonatomic) Boolean isActive;
@property(nonatomic) Boolean isVisible;
@end
応答を解析する方法は次のとおりです
- (void)getCities {
NSURL *URL = [NSURL URLWithString:[NSString stringWithFormat:@"%@city/", APIURL]];
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
[manager GET:URL.absoluteString
parameters:nil
progress:nil
success:^(NSURLSessionTask *task, id responseObject) {
DCParserConfiguration *config = [DCParserConfiguration configuration];
DCKeyValueObjectMapping *parser = [DCKeyValueObjectMapping mapperForClass: [City class] andConfiguration: config];
NSArray *cities = [parser parseArray: responseObject];
}failure:^(NSURLSessionTask *operation, NSError *error) {
NSLog(@"Error: %@", error.localizedDescription);
}];
}
サーバーからの応答は次のとおりです。
(
{
country = 1;
description = 321;
id = 1;
"is_active" = 1;
"is_main" = 0;
"is_visible" = 1;
position = "POINT (42.8760663999999991 74.5912887000000069)";
slug = blabla;
title = "\U0411\U0438\U0448\U043a\U0435\U043a";
},
{
country = 1;
description = 123;
id = 2;
"is_active" = 1;
"is_main" = 0;
"is_visible" = 1;
position = "POINT (40.5266999999999982 72.8031000000000006)";
slug = bloblo;
title = "\U041e\U0448";
}
)
このメソッドを呼び出すと、オブジェクト マッピングで毎回アプリがクラッシュします。
デバッグ メッセージは次のとおりです。
*** キャッチされない例外 'NSUnknownKeyException' が原因でアプリを終了しています。
プロパティの説明を JSON からオブジェクトに変換するとクラッシュします。ここで何が間違っていますか?