1. 自动生成description的插件
https://github.com/adamontherun/xCodeGenerateDescriptionPlugin
安装成功后,在头文件中选中想要生成的属性,按command
+control
+m
就会自动生成description
方法
- (NSString *)description {
return [NSString stringWithFormat:@"User description:\n%@ name: %@\nicon: %@\nage: %u\nheight: %@\nmoney: %@\nsex: %u\n\n", [super description], self.name, self.icon, self.age, self.height, self.money, self.sex];
}
2. 自动导入头文件
按下command
+control
+h
即可弹出插件,输入需要导入的类名即可
网友评论