在上一个版本的 oxxCode (4.3) 中,我看到了在 .m 文件中进行接口声明的预定义模板(例如我们的 Master/Detail 模板)。例如,在文件 MyFile.h 中有:
@interface MyFile
@property (nonatomic, retain) NSString *someProp;
@end
在 MyFile.m 文件中有:
@implementation MyFile
@interface MyFile {
NSString * anotherProp;
}
- (id) init...
为什么用这种方式制作?为什么 anotherProp 没有声明到 MyFile.h 文件中?
提前致谢