Xcode 常见错误解决方案 "持续更新中ing......"

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

:1:1: Umbrella header for module 'JSPatch' does not include


Xcode 常见错误解决方案
xdNpa.png

依次点击红色的圈圈, 找到报错的文件位置

New 把尖括号改双引号

# import "HockeySDK/HockeySDK.h"
Old
#import 

你可能感兴趣的:(Xcode 常见错误解决方案 "持续更新中ing......")