DataManager
我在 99% 的项目中使用我的单例类。我没有在每个类中都导入它,而是考虑将它导入到 pch 文件中,就像我对常量所做的那样。这有什么缺点吗?它被认为是不好的做法吗?
谢谢
#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>
#import "Constants.h"
#import "DataManager.h"
#endif