检查 URL 有效性
有人可以确认 NSURL
的 -checkResourceIsReachableAndReturnError:
方法是否按预期工作。我尝试过将它用于已知的 URL,但它总是返回 NO
。我正在使用 XCode 的 iPhone Simulator 4.1。 谢谢。
Can someone confirm that -checkResourceIsReachableAndReturnError:
method of NSURL
is working as expected. I have tried using it for known URLs and it is always returning NO
. I am using XCode's iPhone Simulator 4.1.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据 NSURL 类参考
因此仅起作用对于文件 URL(您的 URL 可能不是),而且它仅适用于 Mac OS X。
According to NSURL Class Reference
So it only works for file URLs (which your URL probably isn't) and it only works on Mac OS X anyway.
你可以使用这个方法:
You can use this method:
如果您只想知道 URL 是否有效,您可以
If you just want to know if the URL is valid, you can