Xcode中项目的缓存路径
- /Users/username/Library/Developer/Xcode/DerivedData
Xcode自定义代码块 存放路径
- /Users/username/Library/Developer/Xcode/UserData/CodeSnippets
Xcode中框架路径
- Frameworks框架存放路径
- /Applications/Xcode 6.3.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks
Xcode第三方插件路径
- /Users/lvvl/Library/Application Support/Developer/Shared/Xcode/Plug-ins
- 更改KSImageNamed这个自动匹配图片插件的内部方法:
- 1: 进入 /Users/lvvl/Library/Application Support/Developer/Shared/Xcode/Plug-ins/KSImageNamed.xcplugin/Contents/Resources/Completions.plist
- 2: 拷贝1个数组,更改里面的 imageNamed:为自定义的方法名
- 3: 重启Xcode,以后使用指定的方法, 就能自动匹配图片
Xcode文档安装
- /Applications/Xcode.app/Contents/Developer/Documentation/DocSets
- 注意: 拷贝之前最好将默认的文档删除, 因为如果同时存在高版本和低版本的文档, 那么低版本的不会显示
- 或者位置2:
- /Users/uesrname/Library/Developer/Shared/Documentation/DocSets
Xcode修改项目模板以及main函数中的内容
- /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/Project Templates/Mac/Application/Command Line Tool.xctemplate/TemplateInfo.plist
- 修改OC文件头部的描述信息
- /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/File Templates/Source/Cocoa Class.xctemplate/TemplateInfo.plist
Xcode内存管理中相关设置
- 关闭ARC的办法(ARC会屏蔽内存管理的一些操作,会影响学习内存管理),
- 在Xcode 中,单击左上角蓝色项目名图标
- 选Build Settings
- 在选里面的关键字arc
- 找到ARC- -》将YES改成NO
- 开启内存管理中的 僵尸类功能步骤:
- 选中模拟器左边那个target图标
- edit Scheme
- Run
- 勾选Obiect-C Enable Zombie Objects
- Xcode的ARC转换
- 1》将非ARC项目全部转成ARC项目
- Edit- ->Convert to Objective-C ARC
- 2》在项目中想让ARC代码和非ARC代码共存的方法
- 点击左上角蓝色的项目图标- ->Build Phases- ->Compile Sources- ->双击想要设置的.m文件- ->设置Compiler Flags
- 输入-f-objc-arc(当前.m文件使用ARC)
- 或者输入-fno-objc-arc(当前.m文件不使用ARC)
- 3> 将MRC的所有代码编译成静态库(直接使用静态库)
网友评论