Extending a delegate from a base class

6.5k views Asked by At

I have an objc base class:

@protocol BaseClassDelegate;

@interface BaseClass : NSObject

@property (nonatomic, weak) id <BaseClassDelegate> delegate;

@end

@protocol BaseClassDelegate <NSObject>

-(void)baseDelegateMethod;

@end

I am creating a swift sub-class in which I want to extend my delegate...

protocol SubClassDelegate : BaseClassDelegate {

    func additionalSubClassDelegateMethod();
}

class SubClass: BaseClass {

    @IBAction func onDoSomething(sender: AnyObject) {

        delegate?.additionalSubClassDelegateMethod();  <--- No such method in 'delegate'
    }
}

Now, when I create my sub-class, I can say it conforms to the SubClassDelegate and set the delegate. The problem is (of course), is that 'delegate' doesn't exist in this sub-class. Is there a way to tell the compiler to 'extend' my delegate into my sub-class? (or am I being insane here and missed something obvious)

2

There are 2 answers

2
redent84 On BEST ANSWER

I'd either create a wrapper delegate to make it the correct type in SubClass.

class SubClass: BaseClass {
    var myDelegate: SubClassDelegate? {
        get { return delegate as? SubClassDelegate }
        set { delegate = newValue }
    }
    @IBAction func onDoSomething(sender: AnyObject) {
        myDelegate?.additionalSubClassDelegateMethod();
    }
}

Or simply cast the delegate to the expected type:

(delegate as? SubClassDelegate)?.additionalSubClassDelegateMethod();
0
brandonscript On

Here's a more comprehensive example of how to do this. Thanks to redent84 for pointing me in the right direction.

protocol SubclassDelegate: ClassDelegate {
    func subclassDelegateMethod()
}

class Subclass: Class {
    // here we assume that super.delegate property exists
    @IBAction func buttonPressedOrSomeOtherTrigger() {
        if let delegate: SubclassDelegate = self.delegate as? SubclassDelegate {
            delegate.subclassDelegateMethod()
        }
    }
}

And then in your implementation:

extension SomeOtherClass: SubclassDelegate {
    let someObject = Subclass()
    someObject.delegate = self

    func subclassDelegateMethod() {
        // yay! 
    }
}