Package apple.webkit

Class WKUserContentController

  • All Implemented Interfaces:
    NSCoding, NSSecureCoding, NSObject

    public class WKUserContentController
    extends NSObject
    implements NSSecureCoding
    A WKUserContentController object provides a way for JavaScript to post messages to a web view. The user content controller associated with a web view is specified by its web view configuration.
    • Constructor Detail

      • WKUserContentController

        protected WKUserContentController​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • hash_static

        public static long hash_static()
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • new_objc

        public static java.lang.Object new_objc()
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • version_static

        public static long version_static()
      • addScriptMessageHandlerName

        public void addScriptMessageHandlerName​(WKScriptMessageHandler scriptMessageHandler,
                                                java.lang.String name)
        Adds a script message handler to the main world used by page content itself. Calling this method is equivalent to calling addScriptMessageHandler:contentWorld:name: with [WKContentWorld pageWorld] as the contentWorld argument.
        Parameters:
        scriptMessageHandler - The script message handler to add.
        name - The name of the message handler.
      • addUserScript

        public void addUserScript​(WKUserScript userScript)
        Adds a user script.
        Parameters:
        userScript - The user script to add.
      • removeAllUserScripts

        public void removeAllUserScripts()
        Removes all associated user scripts.
      • removeScriptMessageHandlerForName

        public void removeScriptMessageHandlerForName​(java.lang.String name)
        Removes a script message handler. Calling this method is equivalent to calling removeScriptMessageHandlerForName:contentWorld: with [WKContentWorld pageWorld] as the contentWorld argument.
        Parameters:
        name - The name of the message handler to remove.
      • userScripts

        public NSArray<? extends WKUserScript> userScripts()
        The user scripts associated with this user content controller.
      • addContentRuleList

        public void addContentRuleList​(WKContentRuleList contentRuleList)
        Adds a content rule list.
        Parameters:
        contentRuleList - The content rule list to add.
      • removeAllContentRuleLists

        public void removeAllContentRuleLists()
        Removes all associated content rule lists.
      • removeContentRuleList

        public void removeContentRuleList​(WKContentRuleList contentRuleList)
        Removes a content rule list.
        Parameters:
        contentRuleList - The content rule list to remove.
      • supportsSecureCoding

        public static boolean supportsSecureCoding()
      • _supportsSecureCoding

        public boolean _supportsSecureCoding()
        Description copied from interface: NSSecureCoding
        This property must return YES on all classes that allow secure coding. Subclasses of classes that adopt NSSecureCoding and override initWithCoder: must also override this method and return YES. The Secure Coding Guide should be consulted when writing methods that decode data.
        Specified by:
        _supportsSecureCoding in interface NSSecureCoding
      • addScriptMessageHandlerContentWorldName

        public void addScriptMessageHandlerContentWorldName​(WKScriptMessageHandler scriptMessageHandler,
                                                            WKContentWorld world,
                                                            java.lang.String name)
        Adds a script message handler. Adding a script message handler adds a function window.webkit.messageHandlers..postMessage() to all frames, available in the given WKContentWorld. The name argument must be a non-empty string. Each WKContentWorld can have any number of script message handlers, but only one per unique name. Once any script message handler has been added to a WKContentWorld for a given name, it is an error to add another script message handler to that WKContentWorld for that same name without first removing the previous script message handler. The above restriction applies to any type of script message handler - WKScriptMessageHandler and WKScriptMessageHandlerWithReply objects will conflict with each other if you try to add them to the same WKContentWorld with the same name.
        Parameters:
        scriptMessageHandler - The script message handler to add.
        contentWorld - The WKContentWorld in which to add the script message handler.
        name - The name of the message handler.
      • addScriptMessageHandlerWithReplyContentWorldName

        public void addScriptMessageHandlerWithReplyContentWorldName​(WKScriptMessageHandlerWithReply scriptMessageHandlerWithReply,
                                                                     WKContentWorld contentWorld,
                                                                     java.lang.String name)
        Adds a script message handler. Adding a script message handler adds a function window.webkit.messageHandlers..postMessage() to all frames, available in the given WKContentWorld. The name argument must be a non-empty string. Each WKContentWorld can have any number of script message handlers, but only one per unique name. Once any script message handler has been added to a WKContentWorld for a given name, it is an error to add another script message handler to that WKContentWorld for that same name without first removing the previous script message handler. The above restriction applies to any type of script message handler - WKScriptMessageHandlerWithReply and WKScriptMessageHandler objects will conflict with each other if you try to add them to the same WKContentWorld with the same name. Refer to the WKScriptMessageHandlerWithReply documentation for examples of how it is more flexible than WKScriptMessageHandler.
        Parameters:
        scriptMessageHandlerWithReply - The script message handler to add.
        contentWorld - The WKContentWorld in which to add the script message handler.
        name - The name of the message handler.
      • removeAllScriptMessageHandlers

        public void removeAllScriptMessageHandlers()
        Removes all associated script message handlers.
      • removeAllScriptMessageHandlersFromContentWorld

        public void removeAllScriptMessageHandlersFromContentWorld​(WKContentWorld contentWorld)
        Removes all script message handlers from a given WKContentWorld.
        Parameters:
        contentWorld - The WKContentWorld from which to remove all script message handlers.
      • removeScriptMessageHandlerForNameContentWorld

        public void removeScriptMessageHandlerForNameContentWorld​(java.lang.String name,
                                                                  WKContentWorld contentWorld)
        Removes a script message handler.
        Parameters:
        name - The name of the message handler to remove.
        contentWorld - The WKContentWorld from which to remove the script message handler.