一,Xcode插件管理工具 Alcatraz:
mkdir -p ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins;
curl -L http://git.io/lOQWeA | tar xvz -C ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins
Xcode 7 更改上条命令为:
curl -fsSL https://raw.github.com/supermarin/Alcatraz/master/Scripts/install.sh | sh
重启Xcode在Xcode的菜单选项Windows->Package Manager
http://www.bubuko.com/infodetail-922634.html
Xcode8插件失效
让你的 Xcode8 继续使用插件
http://pdhero.com/acode/Xcode8-Plugin-invalid.html
三,
那些不能错过的Xcode插件
http://www.cocoachina.com/industry/20130918/7022.html
四,Xcode7 使用NSURLSession发送HTTP请求报错
Xcode7禁用了明码的HTTP请求, 改用Https。
控制台打印:Application Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
解决方法是:
即,
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
五,dylib ——>tbd
Xcode 7 缺少 *.dylib库的解决方法 - 简书
.Build Phases 配置
project -> Build Settings ->Linking -> Other Linker Flag
添加 -l< 所需 dylib 的名称 >
例如:libsqlite3.dylib -> -lsqlite3