// // Peoples.m // objc-test // // Created by huangyirong on 2020/4/3. // #import "Peoples.h" #import @implementation Peoples -(instancetype)init{ self = [super init]; if (self) { [self modifyProperty]; } return self; } //2、获取类的属性列表-并修改属性值 -(void)modifyProperty{ NSLog(@"kkkk"); unsigned int count = 0; Ivar *ivarList = class_copyIvarList(self.class, &count); for (NSUInteger i=0; i