示例#1
0
 /// <summary>
 /// Hide the tool bar. The tool bar contains three buttons: go back, go forward and close webview.
 /// </summary>
 /// <param name="animate">If set to <c>true</c>, show it with an animation.</param>
 /// <description>
 /// The tool bar is only available in iOS. For Android and Windows Phone, you can use the back button of device to go back.
 /// </description>
 public void HideToolBar(bool animate)
 {
     #if UNITY_IOS && !UNITY_EDITOR
     toolBarShow = false;
     UniWebViewPlugin.HideToolBar(gameObject.name, animate);
     #endif
 }