如何编写整个App识别的一个import语句

时间:2010-10-01 09:12:35

标签: iphone objective-c

我记得在某个地方读书但我不记得我需要在哪里编写import语句,这样整个App都可以访问它。我有一个AppHelper类,我希望整个应用程序看不到每个类文件中的导入。

所以我试图将它添加到我的.pch文件中但是我收到以下错误消息:

“_ kGTMHTTPFetcherStatusDomain”,从引用:在GTMHTTPFetcher.o _kGTMHTTPFetcherStatusDomain $ non_lazy_ptr(也许你的意思是:_kGTMHTTPFetcherStatusDomain $ non_lazy_ptr) “_kGTMHTTPFetcherRetryDelayStartedNotification”,从引用:(也许你的意思是:_kGTMHTTPFetcherRetryDelayStartedNotification $ non_lazy_ptr)在GTMHTTPFetcher.o _kGTMHTTPFetcherRetryDelayStartedNotification $ non_lazy_ptr < / p>

这是我的.pcb文件:

//
// Prefix header for all source files of the 'SplitView' target in the 'SplitView' project
//
#import <Availability.h>


#ifndef __IPHONE_3_2
#warning "This project uses features only available in iPhone SDK 3.2 and later."
#endif


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

#endif

#import "AppCache.h"

1 个答案:

答案 0 :(得分:4)

您可以将该导入添加到应用程序预编译头文件中(例如YourApplication.pch)