I've been seeing this the last couple days. I create a new swift class and add some IBActions to it by ctrl-dragging from the storyboard. Say, for example a "print" button. I drag over to the class file and say create an action with sender UIButton and name it 'doPrint'. The function gets created likt this:
@IBAction func doPrint(sender: UIButton) {}
but when I run, it crashes with 'unrecognized selector sent to instance' and the selector it is trying to send is 'doPrintWithSender' which obviously isn't recognized because it isn't called that. All the new button actions have 'WithSender' appended to the name in the inspector and they don't work.