0
- (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 解析器,帮助我。

4

1 回答 1

0

这是您可以参考的链接

http://mobile.tutsplus.com/tutorials/iphone/restkit_ios-sdk/
https://github.com/RestKit/RestKit/wiki/Object-mapping

于 2012-09-29T06:15:14.140 回答