美文网首页
安利两个插件

安利两个插件

作者: 孤獨的守望者 | 来源:发表于2016-03-25 14:57 被阅读20次

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. 自动导入头文件

https://github.com/lucholaf/Auto-Importer-for-Xcode

按下command+control+h即可弹出插件,输入需要导入的类名即可

相关文章

网友评论

      本文标题:安利两个插件

      本文链接:https://www.haomeiwen.com/subject/npfdlttx.html