I have a unit test in which I verify that a view controller is correctly validating items in a context menu. I converted the view controller class to Swift, keeping the selector names the same, while the test is still in ObjC. The test now doesn't work because the selector created in ObjC as @selector(action:) somehow isn't matching Swift's #selector(ClassName.action(_:)). Do I have to rewrite my test in Swift for this to work?
_______________________________________________ swift-users mailing list swift-users@swift.org https://lists.swift.org/mailman/listinfo/swift-users