使用 NSXMLParser 在 obj c 中将整数存储在 int 变量中
大家好,
我正在做一个 iphone 项目,因为我需要从 xml 中获取一个 int 值,所以 我如何使用 NSXMLParser (通过解析 xml)将存储在 xml 中的整数值存储到 int 变量中(通过解析 xml)
任何人都可以给我一些例子,,,提前谢谢
hii every one
i am doing a iphone project in that i need to take a int value from xml so
how can i store a integer value which is stored in a xml, into a int variable using NSXMLParser (by parsing the xml)
can any one give me some examples,,, thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种方法(假设您已经知道如何使用 NSXMLParser)
xml:
code:
(currentElementValue 和 intVariable 分别是可变字符串和 int 成员)。
Here is one way (assuming you already know how to use NSXMLParser)
xml:
code:
(currentElementValue and intVariable are mutable string and int members respectively).