pch文件的创建和使用
1.Command+n 创建pch文件
2.修改路径
3.选中创建好的pch文件,看右边,它的详细路径,如果路径和第二步中的路径有不同,在第二步中进行修改。
4.在pch文件中写入需要的文件
#ifndef Demo_PrefixHeader_pch
#define Demo_PrefixHeader_pch
#endif
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#define WIDTH self.view.frame.size.width
#define HEIGHT self.view.frame.size.height
一个人,一片天,一条路,一瞬间!