iOS在Xcode6中怎么创建OC category文件
Xcode6删除了一些模版,其中就包括category模版。
解决方法两种如下:
直接用常见的Cocoa Touch Class模版建立,名字起个UIView+XXX(名字自定),然后在.h和.m文件里面的样式改成category的那种;这样做不够优雅,逼格太低,简直不能忍,所以请看第二种。
把模版加进去就好啦;
a. 模版路径:
PROJECT_TEMPLATES_PATH="/Applications/Xcode6.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates/Project Templates/iOS/Application"
FILE_TEMPLATES_PATH="/Applications/Xcode6.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates/File Templates/Source"b. 模版下载见附件,上面两个路径都要有附件里面的模版。
又能快乐地玩耍了~~
参考链接:https://github.com/NSFish/AddMissingTemplates