중첩 배열 매핑에 대한 질문이 있습니다. https://github.com/RestKit/RestKit/blob/master/Docs/Object%20Mapping.md에는 중첩 된 객체를 매핑하는 예제가 있습니다.Restkit 매핑 중첩 배열
{ "articles": [
{ "title": "RestKit Object Mapping Intro",
"body": "This article details how to use RestKit object mapping...",
"author": [{
"name": "Blake Watters",
"email": "[email protected]"
},
{
"name": "abc",
"email": "emailaddress"
}]
"publication_date": "7/4/2011"
}]
}
어떻게 내 수업은 저자의 배열을 얻기를 위해, 같이한다 : 중첩 된 개체가 JSON의 모습 예를 들어 객체의 배열 인 경우
하지만, 무엇을해야합니까? 예제의 코드 그게 :
@interface Author : NSObject
@property (nonatomic, retain) NSString* name;
@property (nonatomic, retain) NSString* email;
@end
@interface Article : NSObject
@property (nonatomic, retain) NSString* title;
@property (nonatomic, retain) NSString* body;
@property (nonatomic, retain) Author* author; // should be an array of Author-Objects
@property (nonatomic, retain) NSDate* publicationDate;
@end
나는 저자의 배열을 프로그래머 내가있는 NSArray에 문서의 저자 속성의 클래스를 변경하고 있다면, 어떻게하는지 Restkit가에 그, 알고 Restkit를 알 수있는 방법 이 NSArray는 Author-Objects 여야합니다 ... ??
저는 RKObjectMapping을 사용하여 Object를 JSON에서 Objective-c로 또는 그 반대로 매핑합니다.
는