Open Samback opened 7 years ago
I was trying to integrate your library at Swift 3 project with Xcode 8.
When I was trying just to add module SARate at my project, I've faced with next issue at
SARate
#import "iRate.h" /Users/...../Pods/SARate/SARate/SARate.h:28:9: Include of non-modular header inside framework module 'SARate.SARate': '/...../Pods/iRate/iRate/iRate.h'
So, to fix that issue, I've to change #import "iRate.h" -> #import <iRate/iRate.h> and unlock SARate.h file.
I was trying to integrate your library at Swift 3 project with Xcode 8.
When I was trying just to add module
SARate
at my project, I've faced with next issue atSo, to fix that issue, I've to change #import "iRate.h" -> #import <iRate/iRate.h> and unlock SARate.h file.