sudzc如何使用ws调用返回的对象

发布于 2024-11-06 19:21:45 字数 225 浏览 0 评论 0原文

sudzc 生成的存根为:

(void)HandleSearchResult: (id) value { ...

该文档指出“value”可以转换为 (SDZSearchItemsByUpcResponse *)。然而事实并非如此。

在 XCode 中,“值”的类型似乎是 __NSCFDictionary

The sudzc generated stub is:

(void)HandleSearchResult: (id) value { ...

The document indicates that "value" can be cast into (SDZSearchItemsByUpcResponse *). However that was not true.

In XCode, the type of "value" appears to be __NSCFDictionary.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青巷忧颜 2024-11-13 19:21:45

__NSCFDictionaryNSDictionaryNSMutableDictionary 的具体子类。像这样处理:

-(void)handleSearchResult:(id)value {
    NSDictionary* dict = value;
    NSLog(@"value is: %@", dict);
    // Do what you want with your dictionary
}

我会跳过 SudzC 并使用 https://github.com/ 中的 CWXMLTranslator jayway/CWFoundation。它允许您忽略 SOAP XML 响应中的大部分内容,并直接转换为正确的域对象,而不是字典和其他占位符。

__NSCFDictionary is a concrete subclass of either NSDictionary or NSMutableDictionary. Handle like so:

-(void)handleSearchResult:(id)value {
    NSDictionary* dict = value;
    NSLog(@"value is: %@", dict);
    // Do what you want with your dictionary
}

I would skip SudzC and use CWXMLTranslator from https://github.com/jayway/CWFoundation. It allows you to ignore most of the cruft in SOAP XML responses, and translates directly to proper domain objects, not dictionaries and other placeholders.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文