Xcode辅助工具

常用插件:


Xcode辅助工具_第1张图片
309C756E-8D38-41A5-A0C4-C619D9E5E98A.png

获取Xcode的uuid:defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID

Xcode改名后,安装部份命令行可能会失败,

07554CD9-FBC9-492B-BBD0-821C54C0B116.png

解决方法如下:
sudo xcode-select --switch /Applications/XcodePlug.app/Contents/Developer
其中/Applications/XcodePlug.app/是你xcode的路径,然后可以安装xcode命令行工具:
sudo xcode-select --install
sudo xcode-select --switch /Applications/XcodePlug.app/Contents/Developer

Xcode插件失效:find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add \defaults read /Applications/Xcode.app/Contents/Info.plist DVTPlugInCompatibilityUUID` `

xcode8下快捷键 command + / 注释失效: 解决方法1: Xcode -> preferences -> key bindings 中的comment selection 是否设置上快捷键了 解决方法2:http://blog.csdn.net/jnbbwyth/article/details/52576169 第四个问题详解

.Xcode8没有ios8以前的版本(已解决):
1.应用程序-xcode 显示包内容-Contents-Developer-Platforms-iPhoneOS.platform-DeviceSupport 把里边 6.0 6.1 7.0 7.1 的文件夹粘贴到xcode8 对应的文件夹内 2. 应用程序-xcode 显示包内容-Contents-Developer-Platforms-iPhoneOS.platform-Developer-SDKs-iPhoneOS.sdk-SDKSettings.plist 文件下DefaultProperties - DEPLOYMENT_TARGET_SUGGESTE... 该数组中添加 6.0 6.1 7.0 7.1 对应的测试版本,(注意:如果你的文件是只读模式的,那么是不能修改的,你需要把Contents-Developer-Platforms-iPhoneOS.platform-Developer-SDKs-iPhoneOS.sdk-SDKSettings.plist 这些文件的只读模式都改成读写模式)这个版本排序一定要是从小到大,直接把小的添加到下面是不管用的,必须把小的拖到最上边.这个时候退出你的Xcode,然后重新启动,你就会发现ios8.0以下的真机 也可以正常测试了

教你如何科学的在Xcode8上使用插件 转链接:http://www.cocoachina.com/bbs/read.php?tid-1705417.html

runtime runloop 翻译:http://www.cocoachina.com/bbs/read.php?tid-1712036.html

好用的第三方插件:http://www.cocoachina.com/ios/20161230/18477.html

你可能感兴趣的:(Xcode辅助工具)