**前提・実現したいこと
**
@ionic-native/in-app-browserを利用し、任意のサイトをiPhone上で内部ブラウザ表示したいです。
サービスに定義したin-app-browser表示関数を、コンポーネントから呼び出し表示するだけですが、エラーが発生しておりちょっと糸口が掴めない状態です。。
** 発生している問題・エラーメッセージ
**
ios simulatorで確認。
ボタンを押下し、webviewの画面が一瞬表示されますが、すぐに閉じてしまいます。
Xcode上には「Tried to show IAB while already shown」のエラーが出ています。
** 該当のソースコード
**
ー xxx.service.ts import { Injectable } from '@angular/core'; import { InAppBrowser,InAppBrowserObject } from '@ionic-native/in-app-browser'; /** * @export * @class WebViewService */ @Injectable() export class WebViewService { constructor(private inAppBrowser:InAppBrowser) { } /** * ブラウザーを開く */ public showBrowser(ManageScreenURL: string) { var options = "location=no,usewkwebview=yes,clearsessioncache=yes"; const browser:InAppBrowserObject = this.inAppBrowser.create(ManageScreenURL, '_blank', options); browser.show(); } } ー xxx.component.ts import { Component } from '@angular/core'; import { NavController } from 'ionic-angular'; import { HomeComponent } from 'xxxxxx/home.component'; import { WebViewService } from 'xxxxx/webview.service'; /** */ @Component({ selector: 'top-component', templateUrl: './top.component.html', }) export class TopComponent { constructor(private nav: NavController, private webViewService: WebViewService) { } public onStart() { this.webViewService.showBrowser('https://ionicframework.com/'); } }
** 試したこと
**
「Tried to show IAB while already shown webview」で検索し、usewkwebview=yesをつけるとの回答があったりしましたが、解消できず。。
あなたの回答
tips
プレビュー