-
Notifications
You must be signed in to change notification settings - Fork 461
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import Errors in Swift #355
Comments
No, it shouldn't cause any problem for Objective-C users. If you could submit a pull request with these changes I'd be happy to merge it in. |
Handling that now 👍 |
It looks like this is actually fixed on #if __has_include(<NUIParse/NUIParse.h>)
# import <NUIParse/NUIParse.h>
#else
# import "NUIParse.h"
#endif @Stunner I know you have a few more work packages for the release of |
@timbodeit Your thoughts on this? Considering we are both awfully inactive on this project these days, it may make sense to roll out a 0.5.x release to tie people over until we can get 0.6.0 ready and working. |
I'm getting an error when importing this library in Swift `'NUIParse.h' file not found.
This is fixed by changing all import statements from
#import "NUIParse.h"
to#import <NUIParse/NUIParse.h>
.Does this change break anything for Objective-C users?
The text was updated successfully, but these errors were encountered: