在我的项目中,我找不到Prefix.pch文件,所以我创建了新的文件,并且Build Setting - prefix header在其中添加文件路径和名称projectdir / projectname-Prefix.pch
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#define APP_FONT(fontSize) [UIFont systemFontOfSize:fontSize]
#endif
我可以设置字体而不会出现任何错误警告标签.font = APP_FONT(18);
然而,它在运行时崩溃,APP_FONT(18)返回nil。
在ios8上运行没问题