NSDictionary
の結果としてオブジェクトがあり、NSJSONSerialization
リストと呼ばれる辞書の配列である子があります。私のjsonの結果を見てください:
{
"tags": [
"rofl",
"lmao",
"funny",
"haha",
"lmfao"
],
"result_type": "exact",
"list": [
{
"defid": 3689813,
"word": "Lol",
"author": "Lol B",
"permalink": "http://lol.urbanup.com/3689813",
"definition": "The name 'Lol' is an abreviated form of the name '[Laurence]'.",
"example": "\"Hey Lol, you alright?\"\r\n\r\n\"..Well i was chattin to Lol and he said..\"",
"thumbs_up": 44617,
"thumbs_down": 9926,
"current_vote": ""
},
------- bla bla bla ----------
],
"sounds": [
"http://media.urbandictionary.com/sound/lol-871.mp3",
------- bla bla bla ----------
]
}
item (リストの子) のクラス モデルも作成しました。
#import <Foundation/Foundation.h>
@interface Item : NSObject
@property (strong, nonatomic) NSString *defid;
@property (strong, nonatomic) NSString *word;
@property (strong, nonatomic) NSString *author;
@property (strong, nonatomic) NSURL *permalink;
@property (strong, nonatomic) NSString *definition;
@property (strong, nonatomic) NSString *example;
-(instancetype)initWithDictionary:(NSDictionary *)dict;
@end
イニシャライザも作成しました
-(instancetype)initWithDictionary:(NSDictionary *)dict {
if (self = [super init]) {
self.defid = [dict valueForKey:@"defid"];
self.word = [dict valueForKey:@"word"];
self.author = [dict valueForKey:@"author"];
self.permalink = [dict valueForKey:@"permalink"];
self.definition = [dict valueForKey:@"definition"];
self.example = [dict valueForKey:@"example"];
}
return self;
}
私はすでにリスト項目 ( ) の配列を作成していますNSDictionary
。私の問題は、それらをクラスにマップして、リスト項目のインスタンスを作成できるようにすることです。では、配列内のアイテムをアイテム クラスに変換する方法は?
配列の各項目を繰り返して、その初期化を呼び出す必要がありますか? またはそれを行うためのエレガントな方法はありますか?
追加の質問
私はiOS開発に比較的慣れていません。リクエストの結果を解析したいだけです。いくつかのリクエストを取得し、データソースの結果をテーブル ビュー (配列) に割り当てるためのヒントはありますか? これは私のフェッチ方法です:
- (void)fetchDataFromMashape:(NSURL *)URL {
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:URL];
[request setHTTPMethod:@"GET"];
[request setValue:API_KEY_MASHAPE forHTTPHeaderField:API_MASHAPE_HEADER_1];
[request setValue:API_ACCEPT forHTTPHeaderField:API_MASHAPE_HEADER_2];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
NSDictionary *jsonResult = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"Result: %@", jsonResult);
_results = [[NSArray alloc] initWithArray:[jsonResult valueForKey:@"list"]];
}];
[task resume];
}