I would like to be able to use reflection on a classes within Objective C to determine what properties are available at run time.
I do something similar for classes right now using
NSString *str = NSStringFromClass([object class]);
What I would like to do is use this result to go back to the class and see what properties are available as well as what type these properties are.