d#Xcode 9
导入文件
之前直接拖入 虽然选中target 但是还是找不到文件 出问题
需要以下步骤
2.
1.show in finder 进入 把需要拖入的文件夹放入
3.找到刚刚的文件夹,导入.此时target是选中的可用.
文件
导入正常,为什么文件后都有问号,并且不能使用???
source control->add selected files
xcode路径设置
xcode-select --print-path // 查看路径
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
clang: error: no input files 问题解决
clang: error: no input files这个问题一般是因为你删除或者移动了某一个文件,但是在你的编译资源里面( project > target > Build Phases > Compile Sources)还存在它,只要在(project > target > Build Phases > Compile Sources)里面把那些红色的文件删除掉,就可以编译过了
["OBJC_CLASS$_Play", referenced from:] 错误
1342342801_5466.jpg解决方案: Tagert--Build Phases -- Compile Sources 下添加对应的.m文件
(可能不能完全解决问题...)
The file “XXX” couldn’t be opened because you don’t have permission to view it.解决方法:
解决方法:直接点击Xcode -> Preferences ->找到DerivedData删除缓存即可.
ld: entry point (_main) undefined. for architecture arm64
首先进入targets-->Build Phases-->Compile Sources看看有没有导入main.m文件
Xcode 出现Could not build module 'Foundation'错误
检查pch 是否导入头文件 , 导入是否可用 ;
解决:在引用头文件开始加入#ifdef OBJC 结束时加入#endif
网友评论