I have a lot of viewcontrollers in my project that just redirects to its delegate. So I have made a define for it, but I'm not so happy about it's name.
How would you name it or would you do it in another way?
I also have situations where the delegate may return an object or take multiple arguments.
// the problem is highly repetitive code
-(void)switchToNextTab:(id)sender {
SEL sel = @selector(switchToNextTab:);
if([m_delegate respondsToSelector:sel]) {
[m_delegate performSelector:sel withObject:self];
}
}
-(void)switchToPrevTab:(id)sender {
SEL sel = @selector(switchToPrevTab:);
if([m_delegate respondsToSelector:sel]) {
[m_delegate performSelector:sel withObject:self];
}
}
-(void)closeTab:(id)sender {
SEL sel = @selector(closeTab:);
if([m_delegate respondsToSelector:sel]) {
[m_delegate performSelector:sel withObject:self];
}
}
// my solution.. which I need a better name for
#define DELEGATE_TRY_PERFORM_SELECTOR_WITH_SELF(selector_name) \
do { \
SEL sel = @selector(selector_name); \
if([m_delegate respondsToSelector:sel]) { \
[m_delegate performSelector:sel withObject:self]; \
} \
} while(0);
-(void)switchToNextTab:(id)sender {
DELEGATE_TRY_PERFORM_SELECTOR_WITH_SELF(switchToNextTab:);
}