pch was compiled with module cache...
解决方法: 1.Close your project or workspace. 2.In Finder: ⇧shift+⌘cmd+G 3.Paste: ~/Library/Developer/Xcode/DerivedData/ 4.Delete the ModuleCache folder and empty trash. 5.Open up your project. 6.Clean: ⇧shift+⌘cmd+K 7.Build: ⌘cmd+B
The file “Logs” couldn’t be saved in the folder “Library” because a file with the same name already exists.
解决方法: iOS Simulator -> Reset Content and Settings.
Your build settings specify a provisioning profile with the UUID,no provisioning profile was found
解决方法: 1.找到项目 xcodeproj 文件,右键打开包内容; 2.找到 project.pbxproj 文件全局搜索“PROVISIONING_PROFILE",将相关 UUID 都删除; 3.保存文件重新打开项目,重新安装 provisioning profile 文件即可.
Error returned in reply:Connection invalid.
解决方法: 重启 Xcode 和模拟器即可.
Swift 中 pods 导入 OC 库报 file not found
解决方法:
1.target->Build Settings->Objective-C Bridging Header,设置路径; 2.在 Bridging-Header(桥接文件)中 引入.h 文件要包含上层文件夹,否则 Xcode 找不到: #import "AFNetworking/AFNetworking.h"
Cornerstone 无法上传项目.a 文件
解决方法:
1.cmd+,进入设置界面,选中 Subversion 取消选项 Use default global ignores;
2. 终端输入vi ~/.subversion/config
找到# global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo # *.rej *~ #*# .#* .*.swp .DS_Store
,输入i
进入编辑模式 替换成global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store
,输入:wq
保存退出;