在 webview 中加载 Twitter feed 使后退按钮首次启用
我已在 Web 视图中加载了 Twitter 网址 (http://mobile.twitter.com)。我有 webview 导航按钮(后退和下一页),该按钮一开始就被禁用。当我加载 Twitter feed 时,后退按钮被启用。我根本没有在网络视图中导航。当我单击后退按钮并检查它时,它会转到纯白色屏幕。
为了检查这一点,我在 iPhone 应用程序的 Safari 中打开了 Twitter URL。即使在 Safari 中,后退按钮也会启用。这是一个错误吗?有什么办法可以解决吗?
I have loaded a twitter url (http://mobile.twitter.com) in a webview. I have webview navigation button (back and next),which is to be disabled in the beginning. The back button gets enabled when I load a twitter feed. I did not navigate in the webview at all. When I click the back button and check it goes to a plain white screen.
To check this, I opened the Twitter URL in the Safari of the iPhone app. Even in Safari the back button gets enabled. Is this a bug? Is there any way to solve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该请求可能正在重定向,您可以通过在
UIWebViewDelegate
的webView:shouldStartLoadWithRequest:navigationType:
方法中放置断点来检查它。The request is probably being redirected, you can check it by placing a breakpoint in the
webView:shouldStartLoadWithRequest:navigationType:
method of yourUIWebViewDelegate
.