Xcode6中去掉了预编译文件,为了使用方便,可以创建pch文件
(1)创建pch文件
(2)修改配置文件,将pch文件的路径添加到building setting中的prefix Header中(“$(SRCROOT)/项目名称/pch文件名”):
(3).pch文件中添加
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "Api.h"
#endif
(4)创建头文件
在此头文件中添加如:
// ios7
#define IS_IOS7 [[[UIDevice currentDevice] systemVersion] floatValue] >=7.0f