通过单击 TabBarItem 重新加载视图(PDF 的原因)
我有一个带有 4 个项目的选项卡栏控制器。在第 4 个中,我包含了一个带有一些链接的 webView。其中一个链接是 PDF,如果我在 webView 中打开 PDF,则无法通过链接返回到主 webView。 4.有没有办法通过重新点击TabBar来重新加载View?如果我从 3. 更改为 4. 选项卡栏,它就可以工作(viewWillAppear)。 ![在此处输入图像描述][1]
预先感谢您的帮助。
I have a Tab Bar Controller with 4 Items. In the 4 one I included a webView with some links. One of the links is a PDF, if I open a PDF in the webView there is no way to go back to the main webView with the links.
Is there a way by re-clicking the 4. TabBar to reload the View? If I change from the 3. to the 4. tabbar it works (viewWillAppear). ![enter image description here][1]
Thanks in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 (UITabBarControllerDelegate< /a>):
(也许是这样的)
Try with this method of (UITabBarControllerDelegate):
(maybe something like this)
UITabBarDelegate 中有一个方法称为:
您还可以使用它来捕获所选选项卡栏项目的触摸。
There is a method in UITabBarDelegate called:
You could use that to also catch touches of the selected tab bar item.