Is it possible to convert this:
- (id)initWithFrame : (NSRect)frame
{
if (self = [super initWithFrame:frame])
{
[self setFont:[NSFont fontWithName:@"Arial" size:0.0]];
// [self startTask];
}
return self;
}
to make it a void?
thanks, Elijah