When adding .swift files, I don't get a prompt asking for automatically creating a bridge file (may be because I may have pressed NO once). While apple documentation says:
When you import Swift code into Objective-C, you rely on an Xcode-generated header file to expose those files to Objective-C.
It means, you cannot make the MyProjectName-Swift
file myself manually like it can be made when importing Objective-C code into a Swift project.
What should I do to bring in the damn prompt that asking for creating a bridging file itself?
P.S. I have only one Target and I want to import only a few .swift files.