如何将 NSMutablearray 中的数据获取到 NSString
你好......
在我的应用程序中,我在 xml 解析方面遇到问题。我有相同的标签与整数值不同。每个标签都有不同的值。
现在我面临的问题是仅访问该特定标签的该值。 请任何人对此有想法。 让我知道。
问题的意思是我有一个 MutableArray 和其中的所有记录。我想在一个视图中显示一些值,并在另一个视图中显示一些值,并在另一个视图中铰孔。 但 MutableArray 是相同的..
还有一件事是我想获取标签值,
<subject>XYZ</subject>
输出是我想要的主题。 我不需要 XYZ,我只需要主题..
抱歉,我无法显示我想要的内容,但请理解我的问题并给我答案,
谢谢
Hello.......
in my apps, i have problem with xml parising .i have same tags differentiate with integer value.each tag has different value.
now the problem me facing is accessing this value for that particular tag only.
plz anybody have idea abat this.
let me know.
mean's the problem is that i have one MutableArray and all record in it. and i want to show some values in one view and reaming some value show in another view and reaming in another view..
But the MutableArray is same..
and one more thing is that i want to get tag value
<subject>XYZ</subject>
the output is subject i want.
i do not need of XYZ i need only subject..
sorry i can not show what i want but please understand my question and give me the answer
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
NSMutableDictionary< /code>
而不是
NSMutableArray
。来自文档。
Use
NSMutableDictionary
insteadNSMutableArray
.From documentation.