Xcode 7.3 / Swift 2: "No method declared with Objective-C selector" warning Xcode 7.3 / Swift 2: "No method declared with Objective-C selector" warning swift swift

Xcode 7.3 / Swift 2: "No method declared with Objective-C selector" warning


Since Swift 2.2 / Xcode 7.3 there is a new way to use a selector:Selector("funcName") was changed to #selector(ClassName.funcName)

Have a look at https://github.com/apple/swift-evolution/blob/master/proposals/0022-objc-selectors.md ,

tl;dr;

Replace Selector("Start") with #selector(YOUR_CLASS.Start)

where YOUR_CLASS = class of target in given context.

If you don't want to do it manually, Xcode provides easy fix itself by default, when you have the following situation, tap on the Yellow triangles ( sometimes required to tap/click multiple times ),

enter image description here

it will give you suggestion:enter image description here

And if you select that suggestion, it will automatically update the selector:enter image description here


Both following statements work perfectly. The upper one is mostly used. However when the selector method is in a different ViewController the compiler warning "No method declared with Objective-C selector 'buttonHandler'" may occur.

The second listed statement does not give this warning.

button.addTarget(parentViewController, action: Selector("buttonHandler:"), forControlEvents: .TouchUpInside)button.addTarget(parentViewController, action: #selector(MainViewController.buttonHandler), forControlEvents: .TouchUpInside)

In the target view controller (MainViewController) you can define the module:

func buttonHandler(sender:UIButton!) {    print ("Pressed")}


On Swift 4 I had to add @objc before the func to get rid of the warnings.

This is how I call the func with NSTimer:

 Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(ViewController.intro), userInfo: nil, repeats: false)

This is how the func is declared:

     @objc func intro () {          // do your stuff here              }

I also updated the setting as the Xcode requested:

enter image description here

No more warnings, everything seems to be working fine.