提问人:Gith 提问时间:7/31/2023 最后编辑:Gith 更新时间:7/31/2023 访问量:44
在 Web 视图中隐藏弹出窗口
Hiding a popup in a webview
问:
我是 iOS 编程 (Xamarin) 的新手。我想在单击 Web 视图的弹出窗口中的链接时显示视图。(附图)弹出图片
if(msg == "Settings")
{
UIStoryboard storyBoard = UIStoryboard.FromName("MobileSettings", null);
MobileSettingsViewController mobileView = storyBoard.InstantiateViewController("MobileSettingsViewController") as MobileSettingsViewController;
PresentViewController(mobileView, false, null);
}
当我完成此视图时,我删除了该视图,如该视图的控制器类中的以下代码所示。
cancelButton.TouchUpInside += delegate (object sender, EventArgs e)
{
this.DismissViewController(false, null);
};
现在的问题是,弹出窗口仍然显示在 webview 中,我不确定如何隐藏它。弹出图片
提前致谢。
答: 暂无答案
评论
UIViewController
TouchesBegan
cancelButton.TouchUpInside