1
inker command failed with exit code 1 (use -v to see invocation)
如果報了這個錯誤說明項目中存在兩個相同的.m文件, 找出刪除其中一個就可以解決問題
2
Command /Applications/Xcode7,3.app/Contents/Developer/usr/bin/ibtool failed with exit code 255
解決方案: shift+command+k 清下緩存
3
Xcode commit 提交報錯 "Couldn't communicate with a helper application",
解決辦法, 在終端命令行輸入以下兩行指令即可解決:
xcrun git config --global user.email 你的郵箱不加引號
xcrun git config --global user.name "你的賬戶名"
4
<module-includes>:1:1: Umbrella header for module 'JSPatch' does not include
xdNpa.png
依次點擊紅色的圈圈, 找到報錯的文件位置
New 把尖括號改雙引號
# import "HockeySDK/HockeySDK.h"
Old
#import <HockeySDK/HockeySDK.h>