Qiita Conference 2025

tenntenn (@tenntenn)

好奇心を原動力に行動するソフトウェアエンジニアになるために

6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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

Qiita Conference 2025 will be held!: 4/23(wed) - 4/25(Fri)

Qiita Conference is the largest tech conference in Qiita!

Keynote Speaker

ymrl、Masanobu Naruse, Takeshi Kano, Junichi Ito, uhyo, Hiroshi Tokumaru, MinoDriven, Minorun, Hiroyuki Sakuraba, tenntenn, drken, konifar

View event details
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?