I want to include an Objective-C framework in my Swift project. I followed the instructions to append my existing pod file and executed
pod update
The files were downloaded without any problems but I have some trouble to use the new classes in my project.
I know that I have to create -Bridging-Header.h and there I placed the line
#import "SSZipArchive.h"
But the classes were not be found by the compiler.