FUIWebViewContainer
@MainActor
open class FUIWebViewContainer : UIViewController
Theming
Supported style classes
fdlFUIWebViewContainer
fdlFUIWebViewContainer_cancelButton
fdlFUIWebViewContainer_navigationBar
-
WKWebView to display in the FUIWebViewContainer
Declaration
Swift
@MainActor 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 moreDeclaration
Swift
@available(*, deprecated, message: "This type is not needed any more since only WKWebView available") public enum WebViewType -
initializer for
FUIWebViewContainerDeclaration
Swift
@available(*, deprecated, message: "Please use init(﹚.") @MainActor public convenience init(type: WebViewType)Parameters
typeWebViewTypeof the view to be displayed. .wkWebView(Default:.wkWebView`, .uiWebView is not supported anymore based on Apple Store requirement) -
initializer for
FUIWebViewContainerDeclaration
Swift
@MainActor public convenience init() -
The object acts as the delegate of
FUIWebViewContainer.Declaration
Swift
@MainActor open weak var delegate: FUIWebViewContainerDelegate? -
The
FUIProcessingIndicatorViewof thisFUIWebViewContainer.Declaration
Swift
@MainActor public var processingIndicatorView: FUIProcessingIndicatorView -
The Cancel button on the left side of the navigation bar.
Declaration
Swift
@MainActor public var cancelButton: UIBarButtonItem? -
Method to be called by the developer to show the processingIndicator
Declaration
Swift
@MainActor public func showProcessingIndicator() -
Method to be called by the developer to dismiss the processingIndicator
Declaration
Swift
@MainActor public func dismissProcessingIndicator() -
Method to be called by the developer to start the processingIndicator animating
Declaration
Swift
@MainActor public func startAnimating() -
Method to be called by the developer to stop the processingIndicator animating
Declaration
Swift
@MainActor public func stopAnimating()