Function 関数

class_createInstance(_:_:)

Creates an instance of a class, allocating memory for the class in the default malloc memory zone.

Declaration 宣言

func class_createInstance(_ cls: AnyClass?, 
                        _ extraBytes: Int) -> Any?

Parameters パラメータ

cls

The class that you want to allocate an instance of.

extraBytes

An integer indicating the number of extra bytes to allocate. The additional bytes can be used to store additional instance variables beyond those defined in the class definition.

Return Value 戻り値

An instance of the class cls.

See Also 参照

Related Documentation 関連文書