we are trying to reference swift methods inside an objective-c implementation.
Swift 3 Class:
import Foundation @objc class MySwiftClass: NSObject {
In my case I had forgotten to add:
#import "MyProject-Swift.h"
Into the obj c file.