0

I have one Obj-C class (one .h, one .m) in my project and about seven Swift files. When I use #import "Class.h" in the bridging header, it causes Xcode to lose the #import "ModuleName-Swift.h". If I don't import the Class.h header file in the bridging header, #import "ModuleName-Swift.h" works just fine.

Any ideas how to fix this?

lanza
  • 1,512
  • 2
  • 13
  • 26

1 Answers1

1

This enforces a recursive requirement and thus won't work.

lanza
  • 1,512
  • 2
  • 13
  • 26