I want to have a way to import my Swift Cocoapods globally in every class, how can I achieve this?
I tried a lot of things and they didn\'t work. Here are some ways
As of Swift4:
I just managed to do that by adding the following line to my bridging header:
#import
How good/bad this practise is? Not sure, but I just wanted some extensions globally available in my project. this did the trick.