Welcome! › Forums › Unity Plugins › In-App Web Browser › App is getting crashed on iOS with this plugin › Reply To: App is getting crashed on iOS with this plugin
July 5, 2017 at 5:18 am
#247
vivekkalkur
Participant
No luck here. I tried with the above code :
public class FirstPersonController : MonoBehaviour
{
public string MensJacketPage = “https://www.target.com/c/jackets-coats-men-s-clothing/-/N-5xu2a”;
private void Update () {
if (hit.transform.name == “Men_Jacket”) {
InAppBrowser.DisplayOptions options = new InAppBrowser.DisplayOptions();
options.displayURLAsPageTitle = false;
options.pinchAndZoomEnabled = true;
options.pageTitle = “Digital VR Store”;
if (!InAppBrowser.IsInAppBrowserOpened()) {
InAppBrowser.OpenURL(MensJacketPage, options);
}
}
}
}