pch前缀clang错误

时间:2013-08-14 08:59:49

标签: clang prefix pch

我有我的前缀pch文件,但我不知道为什么它给我这个错误。请帮忙。

clang:错误:没有这样的文件或目录:'/ Users / djtakeuchi / Documents / Xcode Projects / Xcode提供的源代码/ BirthdayReminder / BirthdayReminder / user-interface / view-controllers /../../ BRBirthdayEditViewController.m “ clang:错误:没有输入文件 命令/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang失败,退出代码为1

prefix.pch文件:

//
// Prefix header for all source files of the 'BirthdayReminder' target in the 'BirthdayReminder' project
//

#import <Availability.h>

#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif

#ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #import <Foundation/Foundation.h>
#endif

0 个答案:

没有答案