自定义MVC开发的Xcode模板
2020/6/11 23:25:30
本文主要是介绍自定义MVC开发的Xcode模板,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
前言
Xcode分为系统模板和自定义模板。模板的好处如下:
1、节省重复代码手写时间
2、统一规范代码,提高代码可读性
3、减少手写代码,XIB或修改相关配置等不必要的时间
iOS系统模板路径如下:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates 复制代码
自定义模板路径如下:
~/Library/Developer/Xcode/Templates 复制代码
自定义模板
文件夹
终端打开自定义模板路径
open ~/Library/Developer/Xcode 复制代码
Xcode目录下依次新建文件夹
Templates-Custom Templates-MVC.xctemplate 复制代码
TemplateInfo文件
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Kind</key> <string>Xcode.IDEKit.TextSubstitutionFileTemplateKind</string> <key>Platforms</key> <array> <string>com.apple.platform.iphoneos</string> </array> <key>Options</key> <array> <dict> <key>Identifier</key> <string>productName</string> <key>Required</key> <true/> <key>Name</key> <string>Module Name</string> <key>Description</key> <string>template</string> <key>Type</key> <string>text</string> <key>Default</key> <string>ok Template</string> <key>Group</key> <array> <string>productName</string> </array> </dict> </array> </dict> </plist> 复制代码
MVC模板文件
https://github.com/jackyshan/XcodeiOSTemplate 复制代码
Xcode新建-选择模板
command+n
输入Module Name
创建文件夹及文件
这种引用目录不是我想要的,删掉-Remove Reference,重新导入文件夹TY_MeiyanSP,选择Create groups
MVC模板导入完成。
这篇关于自定义MVC开发的Xcode模板的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-10-05Swift语法学习--基于协议进行网络请求
- 2022-08-17Apple开发_Swift语言地标注释
- 2022-07-24Swift 初见
- 2022-05-22SwiftUI App 支持多语种 All In One
- 2022-05-10SwiftUI 组件参数简写 All In One
- 2022-04-14SwiftUI 学习笔记
- 2022-02-23Swift 文件夹和文件操作
- 2022-02-17Swift中使用KVO
- 2022-02-08Swift 汇编 String array
- 2022-01-30SwiftUI3.0页面反向传值