@@ -55,11 +55,11 @@ @property (readonly) SEL selector; /*! * The name of the method. */ -@property (readonly, copy) OFString *name; +@property (readonly, nonatomic) OFString *name; /*! * The type encoding for the method. */ @property OF_NULLABLE_PROPERTY (readonly) const char *typeEncoding; @@ -78,11 +78,11 @@ } /*! * The name of the property. */ -@property (readonly, copy) OFString *name; +@property (readonly, nonatomic) OFString *name; /*! * The attributes of the property. * * The attributes are a bitmask with the following possible flags:@n @@ -102,16 +102,16 @@ @property (readonly) unsigned attributes; /*! * The name of the getter. */ -@property OF_NULLABLE_PROPERTY (readonly, copy) OFString *getter; +@property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *getter; /*! * @return The name of the setter. */ -@property OF_NULLABLE_PROPERTY (readonly, copy) OFString *setter; +@property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *setter; @end /*! * @class OFInstanceVariable OFIntrospection.h ObjFW/OFIntrospection.h * @@ -125,11 +125,11 @@ } /*! * The name of the instance variable. */ -@property (readonly, copy) OFString *name; +@property (readonly, nonatomic) OFString *name; /*! * The offset of the instance variable. */ @property (readonly) ptrdiff_t offset; @@ -154,16 +154,16 @@ } /*! * The class methods of the class. */ -@property (readonly, copy) OFArray OF_GENERIC(OFMethod*) *classMethods; +@property (readonly, nonatomic) OFArray OF_GENERIC(OFMethod*) *classMethods; /*! * The instance methods of the class. */ -@property (readonly, copy) OFArray OF_GENERIC(OFMethod*) *instanceMethods; +@property (readonly, nonatomic) OFArray OF_GENERIC(OFMethod*) *instanceMethods; /*! * The properties of the class. * * @warning **Do not rely on this, as this behaves differently depending on the @@ -181,16 +181,16 @@ * used. * * @warning GCC does not emit any data for property introspection for the GNU * ABI. */ -@property (readonly, copy) OFArray OF_GENERIC(OFProperty*) *properties; +@property (readonly, nonatomic) OFArray OF_GENERIC(OFProperty*) *properties; /*! * The instance variables of the class. */ -@property (readonly, copy) +@property (readonly, nonatomic) OFArray OF_GENERIC(OFInstanceVariable*) *instanceVariables; /* TODO: protocols */ /*!