Does Objective-C support marking properties/methods with attributes? like so:
#MyAttribute //sudo example
@porperty (nonatomic, retain) NSString * myString;
I would then like to "reflect" over the class and determine what attribute is attached to the property "myString".
Is something like this possible?
Thanks