LoginSignup
6
6

More than 5 years have passed since last update.

Use delegate in Swift

Last updated at Posted at 2014-06-27

protocol

protocol ControllerDelegate : NSObjectProtocol {
    func Controller(Controller: obj, clickedIndex index: Int);
}

The variable for delegate

class Controller: UIView {
    var delegate:ControllerDelegate!;
    ...

call delegate function like this

Now you donot need to point a function like @selector("function:name:")
Using respondsToSelector("function:name:") is OK

func buttonClicked(sender:UIButton) {
    if self.delegate.respondsToSelector("Controller:clickedIndex:") {
        delegate.Controller(self, clickedIndex:sender.tag);
    }
}
6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6