iPhone - 保存 URL,无需 setURL:forKey: 和 NSURL
无论如何,是否可以使用 NSUserDefaults 保存不带 setURL:forKey: 的 URL,这仅适用于 iOS 4.0 及更高版本?
我使用 fileURLWithPath 在本地加载 HTML 文件,它从介绍页面开始,用户可以点击进入任何内容。目前,每次用户重新启动时,它都会加载回默认值 intro.htm。我希望能够将他们当前的页面保存到 viewdiddissapear 上的 NSUserDefaults 并下次重新加载,但除了 setURL:forKey: 之外找不到任何解决方案。那里有人知道解决方案吗?
Is there anyway to save a URL with NSUserDefaults without setURL:forKey: that is only available to iOS 4.0 and later?
I am loading HTML files locally with fileURLWithPath, and it starts at an intro page and the user can click through to whatever. For now, everytime a user starts over it loads back default to intro.htm. I would like to be able to save their current page to NSUserDefaults on viewdiddissapear and reload it next time, but can't find any solutions besides setURL:forKey:. Anyone out there know a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 URL 转换为字符串:
反之亦然:
You can turn the URL into a string:
And vice versa: