Packagecom.myflashlab.air.extensions.richWebView.ios
Classpublic class Ios
InheritanceIos Inheritance Object

This class is the entry point for accessing the WKWebView API on iOS. You must not initialize it yourself. Instead, you can have access to it via RichWebView.ios.



Public Properties
 PropertyDefined By
  cookieManager : Cookies
[read-only] Returns a reference to the global Cookies class in iOS.
Ios
  embeddedBrowser : EmbeddedBrowser
[read-only] Returns a reference to the SafariViewController in iOS.
Ios
Public Methods
 MethodDefined By
  
getInstance($x:int = 0, $y:int = 0, $width:int = 200, $height:int = 200):WebView
Returns a new instance of WebView window.
Ios
Property Detail
cookieManagerproperty
cookieManager:Cookies  [read-only]

Returns a reference to the global Cookies class in iOS.


Implementation
    public function get cookieManager():Cookies
embeddedBrowserproperty 
embeddedBrowser:EmbeddedBrowser  [read-only]

Returns a reference to the SafariViewController in iOS.


Implementation
    public function get embeddedBrowser():EmbeddedBrowser
Method Detail
getInstance()method
public function getInstance($x:int = 0, $y:int = 0, $width:int = 200, $height:int = 200):WebView

Returns a new instance of WebView window. This window will be visible after you call the addView method of the returned instance.

Notice that every new instance of wkwebview has its own set of configuration which must be set before adding it to the view using the addView method.

Parameters

$x:int (default = 0)
 
$y:int (default = 0)
 
$width:int (default = 200)
 
$height:int (default = 200)

Returns
WebView