Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以解释一下这是做什么的。我希望它写一个对诸如网络服务器之类的 URL 的顺从。如果不是我怎么能完成这样的事情?
NSURL对象用于描述 URL - 但“URL”不一定是 HTTP 链接。它可以很容易地成为指向本地文件系统或网络文件资源的指针。
NSURL
该writeToURL方法用于将字典保存到本地文件系统。如果需要,您可以将字典的 PLIST 表示发送到您运行的服务器,但您必须编写客户端网络代码和(更重要的是)服务器端逻辑来接收它。
writeToURL