Dictionary

public extension Dictionary where Key == String, Value == Any
public extension Dictionary where Key == String, Value == AnyObject
public extension Dictionary where Key == String, Value == NSObject

Available where Key == String, Value == Any

  • init: Initialise a Dictionary from a FREObjects.

    let dictionary:[String: Any]? = Dictionary(argv[0])
    

    Declaration

    Swift

    init?(_ freObject: FREObject?)

    Parameters

    freObject

    FREObject which is of AS3 type Object or a Class

    Return Value

    Dictionary?

Available where Key == String, Value == AnyObject

  • init: Initialise a Dictionary from a FREObject.

    let dictionary:[String: AnyObject]? = Dictionary(argv[0])
    

    Declaration

    Swift

    init?(_ freObject: FREObject?)

    Parameters

    freObject

    FREObject which is of AS3 type Object or a Class

    Return Value

    Dictionary?

Available where Key == String, Value == NSObject

  • init: Initialise a Dictionary from a FREObject.

    let dictionary:[String: NSObject]? = Dictionary(argv[0])
    

    Declaration

    Swift

    init?(_ freObject: FREObject?)

    Parameters

    freObject

    FREObject which is of AS3 type Object or a Class

    Return Value

    Dictionary?