我无法使用#import 和@class
让我们试着用一个简单的经典例子来说明问题:员工案例。
我有一个班级员工,一个班级经理和一个班级部门。
员工是经理的超类,还包含一个对象部门(那么我应该在哪里导入部门?在employee.h 或employee.m 中,我应该使用#import 还是@class?)
Department 包含一组员工,因此应该导入类employee.h(我应该使用导入还是类?在哪里?)
i know theres a better way to solve this problem, using databases or so
but that's not my point, i want to understand when and where to use
#import and where and when use @class
我试图阅读类似的帖子,但我不明白它是如何工作的......