- (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 解析。但响应显示为空。任何人都知道使用 restkit 的 xml 解析器,帮助我。