如何通过http代理objective c加载xml?
我为 mac 开发非常基本的程序。该程序使用 NSXMLParser 和 NSURLConnection 读取 xml 文件。我需要使用http代理服务器(不是系统代理)加载URL。有人知道该怎么做吗?谢谢。
I developing very basic program for mac. The program read xml file using NSXMLParser with NSURLConnection. I need to load URL using http proxy server (not system proxy). Is anyone knows how to do it? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看 文档对于 NSURLConnection,他们会告诉你需要实现 NSURLConnectionDelegate 协议中的回调方法,并会给你详细信息。
该页面还指向几个示例以及示例代码。
您还可以查看 URL 加载系统编程指南(位于developer.apple.com),它将为您提供有关如何使用这些类的更多信息。
If you check out the docs for NSURLConnection, they will tell you that you need to implement the callback methods in the NSURLConnectionDelegate protocol, and will give you details.
That page also points to several examples, with sample code.
You can also check out the URL Loading System Programming Guide at developer.apple.com, which will give you additional information on how these classes can be used.