Type Method 型メソッド

webScriptName(for:)

Returns the scripting environment name for a selector.

Declaration 宣言

class func webScriptName(for selector: Selector!) -> String!

Parameters パラメータ

aSelector

The selector.

Return Value 戻り値

The name used to represent the selector in the scripting environment.

Discussion 解説

It is your responsibility to ensure that the returned name is unique to the script invoking this method. If this method returns nil or you do not implement it, the default name for the selector is constructed as follows:

  • A colon (“:”) in the Objective-C selector is replaced by an underscore (“_”).

  • An underscore in the Objective-C selector is prefixed with a dollar sign (“$”).

  • A dollar sign in the Objective-C selector is prefixed with another dollar sign.

The following table shows examples of how the default name is constructed:

Objective-C selector

Default script name for selector

setFlag:

setFlag_

setFlag:forKey:withAttributes:

setFlag_forKey_withAttributes_

propertiesForExample_Object:

propertiesForExample$_Object_

set_$_forKey:withDictionary:

set$_$$_$_forKey_withDictionary_

Since the default construction for a method name can be confusing depending on its Objective-C name, you should implement this method and return a more human-readable name.

See Also 参照

Getting attributes