Xcode 错误问题以及解决方法(后期遇到还会添加)
1,/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices (0x114333d38). One of the two will be used. Which one is undefined.
解决方法:看看是不是main.storyboard没有加载到工程里面去造成的,如果是则使用如下操作:
点击Xcode的导航栏的“file”—“add file to ”— 然后把main.storyboard添加到工程即可;
2,ARC forbir explicit message send of release错误
解决方法:打开面板的“Build Phases”—“Compile sources” — “找到报上面错的文件,然后双击文件,在弹出来的框里输入-fno-objc-arc“
3,模拟器运行时正常,真机运行时报#include "route.h" not found,解决方法如下:
先在模拟器运行,然后点击#include "route.h”跳进到route文件去
然后选中上面箭头所在的“net”文件夹,按鼠标右键,在弹出的列表 点击“include”文件夹,弹出net文件夹,然后就可以把net文件夹里面的"route.h文件拷贝出来,拖入到用到的工程里面去(如果是主工程用到route.h文件,则拖到主工程里面去,如果是pod工程用到则拖入到pod工程里面去,并勾选用到的库)。