#import "Child.h"
NS_ASSUME_NONNULL_BEGIN
@interface Childson : Child
@property (nonatomic, class, copy) NSString *desc;
@property (nonatomic, class, assign) CGFloat height;
@property (nonatomic, assign) CGFloat weight;
- (void)childsonInfo;
+ (void)classchildsonInfo;
- (void)printAllInfo;
@end
NS_ASSUME_NONNULL_END
how can i get the list of class properties, eg: [desc, height]
the list of class_copyPropertyList/class_copyIvarList don't cotain the class property
the class property where they store, Class object? instance? MetaClass ?