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