-
-
Notifications
You must be signed in to change notification settings - Fork 913
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
[1.x] Set APPLICATION_EXTENSION_API_ONLY
to YES
#791
Conversation
Generated by 🚫 danger |
Ping @Quick/core |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One question, but this looks nice 👍
@@ -85,6 +85,7 @@ extension World { | |||
} | |||
#endif | |||
|
|||
@nonobjc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this necessary? Does World
use @objcMembers
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it's needed. Otherwise those conflict with objc_it
and so on.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1b241a3
to
9fd71b2
Compare
This enables us to use Swift internal classes from Objective-C side with importing the generated header.
I'll consider this as well: Quick/Nimble#540 |
…e a linker warning This silences the "linking against a dylib which is not safe for use in application extensions: /Applications/Xcode.app/path/to/libswiftXCTest.dylib" linker warning.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm 👍
Thanks @sharplet! |
This enables us to use Swift internal classes from Objective-C side with importing the generated header.
Fixes #749. See also Quick/Nimble#525.