iPhone 用 NSDictionary 的 key 连接 XML

发布于 2024-11-28 01:52:54 字数 201 浏览 1 评论 0原文

我有一个表格,其中包含从 NSDictionary 获取的数据。例如,表的每一行都包含使用 NSDictionary 链接的货币名称和汇率。现在我想通过网络从 XML 文件中获取费率值。 我已经制作了 XML 文件和 Web 服务器。

  1. 是否可以?
  2. 我怎样才能做到这一点。
  3. 是否安全。

提前致谢

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.

  1. Is it possible?
  2. How can i accomplish this.
  3. Is it secure.

Thanks in advance

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

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

发布评论

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

评论(1

放我走吧 2024-12-05 01:52:54

解析 xml 文件后,使用对字典的引用并执行以下操作:

假设 xml 将包含 汇率 格式。在 didendelement 中,您可以更改字典项的值,如下所示:

    - (void) parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{   
        [dictionary setValue:parseditem forKey:elementName];
}

parsedItem 可以从方法中获取:

- (void) parser:(NSXMLParser *)parser foundCharacters:(NSString *)string

这里您必须注意元素名称必须是唯一的。您还可以使用属性执行相同的操作,并在将其添加到字典之前添加 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:

    - (void) parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{   
        [dictionary setValue:parseditem forKey:elementName];
}

parsedItem can be got from the method :

- (void) parser:(NSXMLParser *)parser foundCharacters:(NSString *)string

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.

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