最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Cordova inAppBrowser - open a website BUT don't allow universal links on iOS - Stack Overflow

programmeradmin7浏览0评论

I am opening a website with inAppBrowser:

const options = {
        location: 'no',
        hidden: 'no',
        hardwareback: 'no',
        zoom: 'no',
        clearcache: 'yes',
        clearsessioncache: 'yes',
        footer: 'yes',
        footercolor: '#427c0c',
        closebuttoncolor: '#FFFFFF',
        fullscreen: 'no'
    }
this.inAppBrowser.create("https:/foo", '_blank', options);

The problem is when a user clicks a specific website on foo it should navigate to that website within my inAppBrowser BUT instead it triggers a universal link and changes from my application to another application that is registered for that universal link.

How can I prevent universal links in my inAppBrowser?

发布评论

评论列表(0)

  1. 暂无评论