自从我升级了 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'