ObservableArray-RxSwift icon indicating copy to clipboard operation
ObservableArray-RxSwift copied to clipboard

An array that can emit messages of elements and diffs on it's changing.

Results 4 ObservableArray-RxSwift issues
Sort by recently updated
recently updated
newest added

As the documentation mentions, `rx_autoUpdater` doesn't work along with `tableView.rx.items` and it's variations. It basically happens because the dataSource proxy fires `tableView.reloadData()` when the data array changes. I've implemented a...

I am not sure if it's possible, but it would be nice to be able to use `ObservableArray` as a replacement for Swift Array type, without publicly exposing the `ObservableArray`...

I was looking at the implementation and I didn't see any locking mechanism for inserting/removing the elements. So I did quick test: ``` swift func testThreadSafety() { var a: ObservableArray...