In the last verson ox xCode (4.3) I've seen that prefdefined templates (such us Master/Detail template) in which the interface declaration is made in the .m file. For example, in the file MyFile.h there is:
@interface MyFile
@property (nonatomic, retain) NSString *someProp;
@end
And in the MyFile.m file there is:
@implementation MyFile
@interface MyFile {
NSString * anotherProp;
}
- (id) init...
Why it's made on this way? Why the anotherProp isn't declared into the MyFile.h file?
Thanks in advance