in xcode 4, when i try to create a class, for example "ABClass" using a template for Mac OS X, the end result when the file created is:
//header
#import <Foundation/Foundation.h>
@interface DBFTimer : NSObject {
@private
}
@end
and the other file
//.m file
#import "DBFTimer.h"
@implementation DBFTimer
- (id)init
{
self = [super init];
if (self) {
// Initialization code here.
}
return self;
}
- (void)dealloc
{
[super dealloc];
}
@end
is this a bug? and what is the solution? (running Xcode 4 Build 4A304a)
EDIT: ok now i understand why, as this is an subclass of NSObject, thus the foundation header only is required.