Is there a way to get an array of class properties of certain kind? For example if i have interface like this
@interface MyClass : NSObject @property (st
You must include the runtime headers
#import uint propertiesCount; objc_property_t *classPropertiesArray = class_copyPropertyList([self class], &propertiesCount); free(classPropertiesArray);