Function 関数

objc_copyClassList(_:)

Creates and returns a list of pointers to all registered class definitions.

Declaration 宣言

func objc_copyClassList(_ outCount: UnsafeMutablePointer<UInt32>?) -> AutoreleasingUnsafeMutablePointer<AnyClass>?

Parameters パラメータ

outCount

An integer pointer used to store the number of classes returned by this function in the list. This parameter may be nil.

Return Value 戻り値

A nil terminated array of classes. You must free the array with free().

See Also 参照

Obtaining Class Definitions