iPhone 用 NSDictionary 的 key 连接 XML
我有一个表格,其中包含从 NSDictionary 获取的数据。例如,表的每一行都包含使用 NSDictionary 链接的货币名称和汇率。现在我想通过网络从 XML 文件中获取费率值。 我已经制作了 XML 文件和 Web 服务器。
- 是否可以?
- 我怎样才能做到这一点。
- 是否安全。
提前致谢
I have table with data taken from NSDictionary. For example Each row of table contains Currency Name and rate which are linked using NSDictionary. Now i want to take rate value from XML file over the network.
I have made XML file and web server.
- Is it possible?
- How can i accomplish this.
- Is it secure.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解析 xml 文件后,使用对字典的引用并执行以下操作:
假设 xml 将包含
汇率
格式。在 didendelement 中,您可以更改字典项的值,如下所示:parsedItem 可以从方法中获取:
这里您必须注意元素名称必须是唯一的。您还可以使用属性执行相同的操作,并在将其添加到字典之前添加 if 条件。
After you parse your xml file, use the reference to your dictionary and do the following:
Assuming the xml will have
<Currency> conversionrate </currency>
format. In your didendelement you can change the value of dictionary items as below:parsedItem can be got from the method :
Here you have to take care that the element name has to be unique. You can also use attributes to do the same and add a if condition before adding it to the dictionary.