MacOSXプログラミング。毎日更新。 話題: Cocoa, Objective-C, Snow Leopard 例えばこんなクラスがあった時にプロパティの一覧を取得するにはどうするか? @interface Book : NSObject { NSString* title; NSString* author; NSDate* createdDate; float weight; } @property (retain) NSString* title; @property (retain) NSString* author; @property (retain) NSDate* createdDate; @property float weight; @end 以前紹介した StatckOverflow の記事を参考にコードを書いてみた。 How do I find all the p