获取 iOS 应用程序的“~/Library”可靠的路径
此 Apple 技术说明:
http://developer.apple.com/library /ios/#qa/qa2010/qa1699.html
建议将“内部”用户文档存储在 ~/Library
的子目录中。但我找不到可以帮我找到这个的预先创建的搜索域之一。构建这条路径的最佳/最正确/最不可能破坏的方式是什么?
谢谢。
This Apple tech note:
http://developer.apple.com/library/ios/#qa/qa2010/qa1699.html
suggests storing "internal" user documents in a subdirectory off of ~/Library
. But I can't find one of the pre-created search domains that would get me this. What's the best/most correct/least likely to ever break way of constructing this path?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正确的方法是
但是,
[@"~/Library" stringByExpandingTildeInPath]
也有效。斯威夫特3:
The correct way is
However,
[@"~/Library" stringByExpandingTildeInPath]
also works.Swift 3:
你也可以尝试这个:
You can also try this: