Function 関数

property_copyAttributeList(_:_:)

Returns an array of property attributes for a given property.

Declaration 宣言

func property_copyAttributeList(_ property: objc_property_t, 
                              _ outCount: UnsafeMutablePointer<UInt32>?) -> UnsafeMutablePointer<objc_property_attribute_t>?

Parameters パラメータ

property

The property whose attributes you want to copy.

outCount

The number of attributes returned in the array.

Return Value 戻り値

An array of property attributes. You must free the array with free().

See Also 参照

Working with Properties