Function 関数

class_getProperty(_:_:)

Returns a property with a given name of a given class. ある与えられたクラスのある与えられた名前をもつプロパティを返します。

Declaration 宣言

func class_getProperty(_ cls: AnyClass?, 
                     _ name: UnsafePointer<CChar>) -> objc_property_t?

Return Value 戻り値

A pointer of type objc_property_t describing the property, or NULL if the class does not declare a property with that name, or NULL if cls is Nil.

See Also 参照

Working with Classes クラスを扱う