FUIWebViewContainer

open class FUIWebViewContainer : UIViewController

Theming

Supported style classes

fdlFUIWebViewContainer
fdlFUIWebViewContainer_cancelButton
fdlFUIWebViewContainer_navigationBar
  • WKWebView to display in the FUIWebViewContainer

    Declaration

    Swift

    public var wkWebView: WKWebView
  • enum to say whether the WebViewContainer should contain a WKWebView. The UIWebView is not supported anymore based on Apple Store application requirement.

    See more

    Declaration

    Swift

    @available(*, deprecated, message: "This type is not needed any more since only WKWebView available")
    public enum WebViewType
  • initializer for FUIWebViewContainer

    Declaration

    Swift

    @available(*, deprecated, message: "Please use init(﹚.")
    public convenience init(type: WebViewType)

    Parameters

    type

    WebViewType of the view to be displayed. .wkWebView(Default:.wkWebView`, .uiWebView is not supported anymore based on Apple Store requirement)

  • initializer for FUIWebViewContainer

    Declaration

    Swift

    public convenience init()
  • The object acts as the delegate of FUIWebViewContainer.

    Declaration

    Swift

    open weak var delegate: FUIWebViewContainerDelegate?
  • The FUIProcessingIndicatorView of this FUIWebViewContainer.

    Declaration

    Swift

    public var processingIndicatorView: FUIProcessingIndicatorView
  • The Cancel button on the left side of the navigation bar.

    Declaration

    Swift

    public var cancelButton: UIBarButtonItem?
  • Method to be called by the developer to show the processingIndicator

    Declaration

    Swift

    public func showProcessingIndicator()
  • Method to be called by the developer to dismiss the processingIndicator

    Declaration

    Swift

    public func dismissProcessingIndicator()
  • Method to be called by the developer to start the processingIndicator animating

    Declaration

    Swift

    public func startAnimating()
  • Method to be called by the developer to stop the processingIndicator animating

    Declaration

    Swift

    public func stopAnimating()