Why is SimpleAuth CocoaPod not working with Swift Bridging Header file?

I cannot get SimpleAuth CocoaPod to work in my swift project. I have:

  • created a header file with a bridge
  • with #import <SimpleAuth/SimpleAuth.h>

    and
  • edited quick compiler section - code generation in build settings

Do I have to manually fix Swift compiler errors 15 (mostly "unknown type name NSString" and "Expected type"), or is this a sign that I am doing something completely wrong?

thank

+3


source to share


2 answers


I just went back to a few bridged headers projects for importing obj C frameworks and they all have the same problems you have. It looks like a line-by-line fix.



-1


source


#import <Foundation/Foundation.h>

      



in the header file

+1


source







All Articles