I plan to override a method in the subclass if a boolean is set to a certain value, and then to switch this value, and have thought of two options:
1. Calling super and checking success
// Superclass
-(BOOL) showEngine
BOOL result = !self.isEngineActive;
if (result) {
// Does something common to both super and subclass
self.isEngineActive = YES;
}
return result;
}
// Subclass override
-(BOOL) showEngine
BOOL result = [super showEngine];
if (result) {
// Does something unique to subclass
}
return result;
}
2. Delegate to a second method
// Superclass
-(void) showEngine
if (!self.isEngineActive) {
// Delegate
showEngineNow();
// Does something common to both super and subclass
self.isEngineActive = YES;
}
}
// Subclass override
-(void) showEngineNow() {
[super showEngineNow];
// Does something unique to subclass
}
The first method has the negative effect of having to call super and check the result, whereas the second has the negative baggage of a second method call to the delegate. Which would be the better way, and is there one I haven't thought of?