Let me preface this by saying I used to be requested to take a look at this undertaking and I’ve basically two days to finish it and have not carried out any cell growth in years. I have been requested to construct a cell iOS utility that wraps certainly one of our different web sites. There’s a requirement that the hyperlinks throughout the nested webpage open throughout the utility and do not attempt to load into the default internet browser. I’ve tried subscribing to the OnNavigating and the OnNavigated occasions however it seems that nothing is occurring once I try this. It doesn’t matter what I attempt it seems that slightly black bar with the hyperlink textual content seems within the app however then disappears as soon as I click on wherever else.
[![Screenshot][1]][1]
That makes me assume that the hyperlink on the nested web page is attempting to open a brand new tab or browser (which is what it might do when displayed on Safari) however I can not appear to determine how you can catch this occasion so I can redirect the WebView supply. I’m utilizing the next code for my WebView. Please assist.
namespace Views;
public partial class HomePage : ContentPage
{
public HomePage()
{
InitializeComponent();
HomeWebView.Navigated += OnNavigated;
}
///
/// WebView steps bakc one web page (like an online browser again button).
///
///
///
personal void OnBackButtonClicked(object sender, EventArgs args)
{
if (HomeWebView.CanGoBack)
{
HomeWebView.GoBack();
}
}
///
/// Redirects the online view to the primary MyApps web page.
///
///
///
personal void OnHomeButtonClicked(object sender, EventArgs args)
{
HomeWebView.Supply = "https://myapps.com";
}
///
/// Routes the consumer to the about web page.
///
///
///
personal void OnAboutButtonClicked(object sender, EventArgs args)
{
Shell.Present.GoToAsync("//aboutPage");
}
personal void OnNavigated(object sender, WebNavigatedEventArgs e)
{
//The next code modifications the goal of all of the hyperlinks in _self
HomeWebView.EvaluateJavaScriptAsync(@"(operate() {
var hyperlinks = doc.getElementsByTagName('a');
for (var i = 0; i < hyperlinks.size; i++)
{
hyperlinks[i].setAttribute('goal', '_self');
}
})()");
}
}
[1]: https://i.sstatic.internet/UWBK5RED.png