I want to create an Objective-C base class that performs an operation on all properties (of varying types) at runtime. Since the names and types of the properties will not a
Adding some detial to @mvds:
unsigned int count=0; objc_property_t *props = class_copyPropertyList([self class],&count); for ( int i=0;i
Please give @mvds the upvote.