如何在 iOS 上获取 html 文件中标签内的属性?
这是我的链接,我想从这个 URL 的 html 中提取 youtube 视频,
http://gdata.youtube.com/feeds/api/users/mizzoushape/uploads?orderby=updated
$<link rel ='alternate' href='somelink.html'/>$
任何人都可以帮助我了解如何获取标签内的属性。
提前感谢您的宝贵时间
Here is my link i want to extract the youtube videos out from the html at this URL
http://gdata.youtube.com/feeds/api/users/mizzoushape/uploads?orderby=updated
lt;link rel ='alternate' href='somelink.html'/>$
Can any one help me out how to fetch the attributes inside the tag..
Thanks in advance for your valuable time
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在解析 XML 文件,则:
在 parser:didStartElement 方法中,属性存储在 attributeDict 字典中。然后以属性名称作为键存储这些值
If you are parsing XML File Then:
In the parser:didStartElement method, the attributes are stored in the attributeDict dictionary. The values are then stores with the attribute name as the key