hpple html 解析 iphone sdk 有帮助吗?
我想解析 html.. 所以我找到了一些示例代码: http://blog.objectgraph.com/index.php/2010/02/24/parsing-html-iphone-development/ 它使用 hpple 来解析 html...但是有一个问题,这个应用程序由于某种原因不断崩溃,很可能是这里的这一行:
NSURL *url = [NSURL URLWithString: @"http://www.objectgraph.com/contact.html"];
NSString *contents = [NSString stringWithContentsOfURL:url];
NSData *htmlData = [contents dataUsingEncoding:NSUTF8StringEncoding];
xCode 给我警告 stringWithCOntentsofVariable 已被弃用..
所以任何人都可以帮我解决这个问题.. ..通过显示我应该更改哪些代码?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
30 秒 文档显示:
因此,看起来您应该使用
stringWithContentsOfURL:encoding:error
或stringWithContentsOfURL:usedEncoding:error:
代替。就像文档所说的那样。
30 seconds in the documentation shows:
So, it looks like you should be using
stringWithContentsOfURL:encoding:error
orstringWithContentsOfURL:usedEncoding:error:
instead.Just like the documentation says.