您的位置:首页 > 移动开发 > IOS开发

ios 输出预处理后的文件

2014-02-27 23:45 162 查看
On the command line,
gcc -E foo.m
will show you the preprocessed output (just as it does for normal C/C++ files). Of course, this will also expand any
#include
or
#import
statements you may have in your code.

From within Xcode:

Xcode 3: Select the file, then Build → Preprocess.

Xcode 4: Select the file, then Product → Generate Output → Generate Preprocessed File.

Xcode 5: Product → perform action → Preprocessed File.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: