I use a third party Swift framework in my Swift app very often and would like to use it without having to write import ModuleName
in every single Swift file over and over again.
Is there a way to specify default imports like it was possible in Objective-C using a .pch
file?
I already checked Xcode build settings and swiftc
flags but none of them offers this functionality.