像 Safari 一样将图标添加到主屏幕
我看到了 Bug Me iPhone 应用程序,并对向主屏幕添加图标的功能很感兴趣。我认为它的工作原理与 Safari 实现它的方式类似。
这里有一个类似的问题说这是不可能的: 实现“添加到主屏幕”,ala Safari
显然有一个方式,我没有在正确的地方寻找。
还有其他人解决过吗?
I saw the Bug Me iPhone app and was intrigued by the ability to add icons to the home screen. I figured it would work similar to the way that Safari achieves it.
There as a similar question here that said it was not possible:
Implementing "Add to Home Screen", ala Safari
Clearly there is a way and I am not looking in the right places.
Has anyone else worked it out yet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须使用 Safari。
BugMe 通过以下方式将注释保存在主屏幕上:
-openURL:
及其服务器的 URL 启动 Safari。bugme://
链接添加到主屏幕。如果只能使用记录的方法,就没有其他方法了。
对于私有 API,创建 UIWebClip 对象并使用
-[UIApplication addWebClipToHomeScreen:]
。You have to use Safari.
BugMe saves the note on home screen by:
-openURL:
with a URL to their server.bugme://
link to home screen.There's no other ways if only documented methods can be used.
For private APIs, create a UIWebClip object and use
-[UIApplication addWebClipToHomeScreen:]
.