We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I just installed Parse via Cocoapods on Xcode 10. I'm using this Podfile:
def shared use_frameworks! pod 'Parse' pod 'ParseLiveQuery' end target 'MyApp Mac' do shared end target 'MyApp iOS' do shared end
...and my Mac app files to compile with the error:
Missing argument for parameter #1 in call - Task.swift
Screenshot:
I've tried deleting /DerivedData, cleaning the build folder, removing Podfile caches and reinstalling, and restarting Xcode.
/DerivedData
Any ideas of what else I can try?
The text was updated successfully, but these errors were encountered:
I found the solution
Open the Bolt-Swift -> Task.swift -> emptyTask() Change .success() -> .success(())
class func emptyTask() -> Task<Void> { return Task<Void>(state: .success(())) }
Sorry, something went wrong.
This is fixed as of Bolts-Swift v1.4.0 by #64.
executor.execute { self.trySet(state: TaskState.fromClosure() }
pls help me fromClosure Missing argument for parameter #1 in call
No branches or pull requests
I just installed Parse via Cocoapods on Xcode 10. I'm using this Podfile:
...and my Mac app files to compile with the error:
Screenshot:
I've tried deleting
/DerivedData
, cleaning the build folder, removing Podfile caches and reinstalling, and restarting Xcode.Any ideas of what else I can try?
The text was updated successfully, but these errors were encountered: