I have some utility classes with class methods in Objective-C and a copy in Swift. For now, I am using the Swift version, but calling one of the methods from a class that is Objective-C. While I have imported the bridging header and the Swift class method works as expected in the Objective-C code, but not in the console. the console reports “use of undeclared identifier” for the class name when I use either the Objective-C or Swift form to call a method in that class.
Both po and v return the same results.
Any ideas?
Thanks in advance,
Alex Zavatone