If I have a class, how can I list all its instance variable names?
eg:
@interface MyClass : NSObject { int myInt; NSString* myString; NSM
#import NSUInteger count; Ivar *vars = class_copyIvarList([self class], &count); for (NSUInteger i=0; i