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
Class Name Realm+Ext.swift
Line 28 & 46
observer.onNext()
Error : Missing argument for parameter #1 in call
When you add some param, it says Argument passed to call that takes no arguments
Like Trap in Cycle.
Xcode version Version 9.2 (9C40b) RxSwift 4.0 Swift 4.0
In RxSwift, method declaration is like below. So, how you calling without parameter? public func onNext(_ element: Self.E)
Any suggestion?
The text was updated successfully, but these errors were encountered:
It's possible because of Observer<Void>. I guess you can try observer.onNext(Void())
Observer<Void>
observer.onNext(Void())
It's weird that it does not compile to you as I have the same configuration ¯_(ツ)_/¯
Sorry, something went wrong.
No branches or pull requests
Class Name
Realm+Ext.swift
Line 28 & 46
Error :
Missing argument for parameter #1 in call
When you add some param, it says
Argument passed to call that takes no arguments
Like Trap in Cycle.
Xcode version
Version 9.2 (9C40b)
RxSwift 4.0
Swift 4.0
In RxSwift, method declaration is like below. So, how you calling without parameter?
public func onNext(_ element: Self.E)
Any suggestion?
The text was updated successfully, but these errors were encountered: