Function 関数

class_getSuperclass(_:)

Returns the superclass of a class. あるクラスのスーパークラスを返します。

Declaration 宣言

func class_getSuperclass(_ cls: AnyClass?) -> AnyClass?

Parameters パラメータ

cls

A class object. あるクラスオブジェクト。

Return Value 戻り値

The superclass of the class, or Nil if cls is a root class, or Nil if cls is Nil.

Discussion 解説

You should usually use NSObject‘s superclass() method instead of this function.

See Also 参照

Working with Classes クラスを扱う