I have written a class in Swift in my existing Objective-C project. So far, the bridging has worked very well. I do have a method however, where I generate a class at runtime using NSClassFromString(). When the string is my Swift class name, it returns nil.
class MySwiftClass : NSObject {}
and in Objective-C:
Class myClass = NSClassFromString(@"MySwiftClass");
and myClass would be nil every time. I've also tried:
Class myClass = NSClassFromString(@"MyAppName.MySwiftClass");
and still nil.