rxswift
Here are 820 public repositories matching this topic...
Currently we use a pretty naive removal of testing dependencies for SwiftPM by setting an environment variable. We should be able to use Rocket and update our Rakefile script to just remove testing dependencies on each release, and keep it in the development process thanks to that.
The idea came from this PR that I saw RxSwiftCommunity/RxOptional#83, which sounds reall
-
Updated
May 22, 2020 - Swift
Currently it's not possible to override SectionedViewType default method implementations in subclasses of UITableView. I'd like to prevent the default animations and just re-render the cell just like Apple suggests in reload rows Discussion https://developer.apple.com/documentation/uikit/uitableview/1614935-reloadrows.
Unfortunately when I try to override reloadItemsAtIndexPaths the com
-
Updated
May 20, 2020 - Swift
-
Updated
May 18, 2020 - Swift
-
Updated
May 6, 2020 - Swift
-
Updated
May 26, 2020 - Swift
If you present a UIViewController and from that screen you make a step which change flow will create a memory leak by holding the NavigationController with full stack of ViewController within it. That flow is deallocated but the navigation controller and other view controller still exists on memory.
-
Updated
Dec 16, 2019 - Swift
Is your feature request related to a problem? Please describe.
For now there is no documentation on how to disconnect from device when it is connected after state restoration. Look at #278 for more information.
Describe the solution you'd like
Add documentation as a Wiki page
-
Updated
May 26, 2020 - Swift
-
Updated
May 22, 2020 - Swift
-
Updated
Jan 28, 2020 - Swift
The examples in the README produce:
'system(initialState:reduce:scheduler:feedback:)' is deprecated: Renamed to version that takes `ObservableSchedulerContext` as argument.
with the latest version of RxFeedback
-
Updated
Apr 10, 2019 - Swift
-
Updated
May 10, 2020 - Swift
-
Updated
Dec 12, 2019 - Swift
-
Updated
Apr 29, 2020 - Swift
-
Updated
Mar 7, 2020 - Swift
Improve this page
Add a description, image, and links to the rxswift topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the rxswift topic, visit your repo's landing page and select "manage topics."
Short description of the issue:
Currently, the recommended way of extending the library is to use
Observable.create()(https://github.com/ReactiveX/RxSwift/blob/master/Documentation/GettingStarted.md#custom-operators). However, this is only possible for the simplest cases.More complex cases, will require us to understand the implementation details and copy
ProducerandSink.It c