Facebook iPhone 应用程序使用什么来显示应用程序中的页面?
当您点击 Facebook 应用程序上的链接时,它会链接到应用程序内浏览器,可能通过 safari 呈现。我只是想知道如何在我的应用程序中使用它?
When you tap a link on the Facebook app it links to an in app browser, probably rendering via safari. I'm just wondering how do i use this in my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Facebook for iPhone 应用程序使用名为 third20 的自编写框架。 TTWebController 提供了简化的应用程序浏览器。它是开源的并且非常易于使用。尝试一下吧!
The Facebook for iPhone app uses a self written framework named three20. The TTWebController provides a reduced in app browser. It's open source and pretty easy to use. Just give it a try!
使用
UIWebView
-- 文档包含许多示例。Use a
UIWebView
-- the documentation contains many examples.您需要的不仅仅是 UIWebView 吗?这将呈现页面,并允许跟踪页面上的链接。您还可以告诉 UIWebView 后退、前进以及重新加载。您可以使用它自己添加这些功能。
参考: UIWebView类参考
Do you need more than a UIWebView? That will render the page, and allows links on the page to be followed. You can also tell the UIWebView to go back and forward, and reload. You can use that to add those functions yourself.
Ref: UIWebView Class Reference