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
Hi, I used v0.9.0 with RxSwift 6.2 on latest xCode.
i have a memory leak by using:
Observable .combineLatest( foo1.asObservable(), foo2.asObservable() ) .map { string in NSMutableAttributedString(string: string) } .bind(to: rx.animated.fade(duration: 0.1).attributedText) .disposed(by: bag)
I can solve this leak with:
Observable .combineLatest( foo1.asObservable(), foo2.asObservable() ) .map { string in NSMutableAttributedString(string: string) } .bind(to: rx.attributedText) .disposed(by: bag)
how do you think?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I used v0.9.0 with RxSwift 6.2 on latest xCode.
i have a memory leak by using:
I can solve this leak with:
how do you think?
The text was updated successfully, but these errors were encountered: