./ViewController.h:9:9: fatal error: 'UIKit/UIKit.h' file not found
Posted tryfighting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了./ViewController.h:9:9: fatal error: 'UIKit/UIKit.h' file not found相关的知识,希望对你有一定的参考价值。
clang编译的两种方法
1.使用绝对路径:
clang -rewrite-objc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk xx/xx/y.m(文件的绝对路径)
通过上述命令即可编译通过
2.修改全局变量
vim ~/.bash_profile
在终端输入i键入
alias rewriteoc=‘clang -x objective-c -rewrite-objc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk‘
点击esc返回输入:wq退出
终端再次输入 source ~/.bash_profile 环境变量生效
再次编译成C++代码
只需要输入 rewriteoc + 文件的绝对路径
以上是关于./ViewController.h:9:9: fatal error: 'UIKit/UIKit.h' file not found的主要内容,如果未能解决你的问题,请参考以下文章
如何求解:f(n) = f(n-1) + 3*f(n-2) + 3*f(n-3) + f(n-4)
C# 练习用函数递归计算 f(n)=f(n-1)+f(n-2) f=2 f=3
C# 练习用函数递归计算 f(n)=f(n-1)+f(n-2) f=2 f=3