1

自从我升级了 RestKit并开始使用cocoapods我的旧映射停止工作,因为所有值现在都嵌套在字典中。

有没有更优雅的方法来为 XML 进行 RestKit 映射(我知道 JSON 是 RestKit 的主要攻击线,但 XML 也不会很快消失。

更新前的映射

[mapping mapAttributes:@"username", @"password", @"firstName", @"lastName", nil];

.text现在用后缀映射

[mapping mapKeyPath:@"username.text" toAttribute:@"username"];
[mapping mapKeyPath:@"firstName.text" toAttribute:@"firstName"];
[mapping mapKeyPath:@"lastName.text" toAttribute:@"lastName"];

我的播客文件

platform :ios, '6.0'

pod 'RestKit', '0.10.3'
pod 'RestKit/ObjectMapping/XML', '0.10.3'
4

1 回答 1

2

使用 0.20.0 版本的 RestKit。

一个 wiki 可用:https ://github.com/RestKit/RestKit/wiki/Upgrading-from-v0.10.x-to-v0.20.0

于 2013-01-30T14:29:35.610 回答