iOS开发问题总结

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保存退出;

你可能感兴趣的:(iOS开发问题总结)