I try to integrate Swift code in my app.My app is written in Objective-C and I added a Swift class. I\'ve done everything described he
Swift
Objective-C
My issue was that the auto-generation of the -swift.h file was not able to understand a subclass of CustomDebugStringConvertible. I changed class to be a subclass of NSObject instead. After that, the -swift.h file now included the class properly.