I'm currently working with Objective-C project, and i'm using some swift files in that so created bridge header like APPNAME-Swift.h. and i'm able to import in objective-C classes. But here my problem is i need to import objective-c class in swift file.
here is example:
Objective-C project>drag and drop swift files ClassA.swift, ClassB.swift into project and created bridge. Now in objective-C class i'm able to use swift classes in objective-c classes like below Appdelegate.h i imported #import "<#YourProjectName#>-Swift.h"
now i need to import Appdelegate.h in ClassB.swift.
Please Help me on it

