I'm trying to import SKTUtils - which is a set of swift files - into an Objective-C project. As far as I know it would be enough to do this way:
#import "ProjectName-Swift.h"
But the problem is that SKTUtils is not a project, but rather a directory with a set of swift classes. I tried to import the files this way:
#import "Vector3-Swift.h"
#import "CGFloat+Extensions-Swift.h"
.... etcetera ....
But without success. I've also set to yes the define modules option inside the project's build setting but still nothing to do.