6

オブジェクトのdescriptionメソッドをオーバーライドして、宣言されたすべてのプロパティの値を出力できるようにしたい。すべての値を1つずつ追加することでこれを実行できることはわかっていますが、プロパティが多数ある場合は時間がかかることがあります。

Objective-Cの実行時の能力から助けを得ることによって、これを行う簡単な方法があるかどうか疑問に思いましたか?

4

1 に答える 1

6

このソリューションを試しましたか?

#import <Foundation/Foundation.h>
#import <objc/runtime.h>

@interface NSObject (PropertyListing)

// aps suffix to avoid namespace collsion
//   ...for Andrew Paul Sardone
- (NSDictionary *)properties_aps;

@end

@implementation NSObject (PropertyListing)

- (NSDictionary *)properties_aps {
    NSMutableDictionary *props = [NSMutableDictionary dictionary];
    unsigned int outCount, i;
    objc_property_t *properties = class_copyPropertyList([self class], &outCount);
    for (i = 0; i < outCount; i++) {
        objc_property_t property = properties[i];
        NSString *propertyName = [[[NSString alloc] initWithCString:property_getName(property)] autorelease];
        id propertyValue = [self valueForKey:(NSString *)propertyName];
        if (propertyValue) [props setObject:propertyValue forKey:propertyName];
    }
    free(properties);
    return props;
}

@end
于 2012-12-14T15:17:13.763 に答える