Xcode:自定义模板

使用模板的优点:

  1. 节省重复代码手写时间
  2. 统一规范代码,提高代码可读性
  3. 减少手写代码,XIB或修改相关配置等不必要的时间

Xcode系统模板的路径: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates/
由于我们是做iOS开发,则我们常用的模板路径为:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates/File\ Templates/Source/Cocoa\ Touch\ Class.xctemplate

敲黑板,划重点了:

为了防止Xcode升级造成自定义模板的丢失,我们可以在~/Library/Developer/Xcode/路径下新建一个Templates文件夹,再在Templates里新建一个MZTemplate的文件夹,把系统的Cocoa Touch Class.xctemplate复制进去,然后进行修改就可以了。效果如下:

Xcode:自定义模板_第1张图片

你可能感兴趣的:(Xcode:自定义模板)