-
Notifications
You must be signed in to change notification settings - Fork 576
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
Swift 3 Naming Collision #276
Comments
This sounds like a good potential improvement for method names. |
How do I use Parse iOS SDK with Bolts-Swift? |
I am also running into this. While I would prefer to use Bolts-Swift, the Parse SDK calls for Bolts-ObjC so that's what I get. |
Same issue here. |
Same here |
Hi, |
When the objc 'continueWith' methods for
BFTask
get imported into swift 3, they end up colliding with thecontinue
keyword.Since this objc method:
becomes:
Possible solution would be:
- (BFTask *)continueWithBlock:(BFContinuationBlock)block NS_SWIFT_NAME(continueWith(block:));
Update:
If you call the continue with the named parameter the compiler understands it. So this issue really only applies if trying to use trailing closures.
The text was updated successfully, but these errors were encountered: