- (void)viewDidLoad{
[super viewDidLoad];
RKClient *client = [[RKClient alloc] initWithBaseURLString:wwww.example.org];
[RKClient setSharedClient:client];
[[RKClient sharedClient] get:\components.xml delegate:self];
}
- (void)request:(RKRequest*)request didLoadResponse:(RKResponse*)response{
NSLog(@"response %@",response.bodyAsString);
}
restkit からの Xml 解析を使用しています。しかし、応答はnullを示しています。restkit を使用した xml パーサーを知っている人は、助けてください。