An open API service indexing awesome lists of open source software.

https://github.com/tobedefined/rxswiftexample

rxswift 的一些操作符的示例和详解
https://github.com/tobedefined/rxswiftexample

reactivex rxswift

Last synced: about 1 year ago
JSON representation

rxswift 的一些操作符的示例和详解

Awesome Lists containing this project

README

          

# RxSwift Example

主要是RxSwift的一些操作符的示例

> 部分内容摘自[官方文档](http://reactivex.io/documentation)以及翻译的[中文文档](https://beeth0ven.github.io/RxSwift-Chinese-Documentation/)

## 相关地址

- RxSwiftExample Xcode项目: [https://github.com/ToBeDefined/RxSwiftExample/](https://github.com/ToBeDefined/RxSwiftExample/)
- GitBook地址: [http://rxswift.tbd.ink](http://rxswift.tbd.ink/)
- GitBook备用地址: [https://swift.rx.tbd.ink](https://swift.rx.tbd.ink/)

## 目录

- [1. Observable - 可被监听的序列](./RxSwiftStudy/1.Observable-可被监听的序列.md)
- [2. Observer - 观察者](./RxSwiftStudy/2.Observer-观察者.md)
- [3. Observable & Observer 既是可被监听的序列也是观察者](./RxSwiftStudy/3.Observable&Observer-既是可被监听的序列也是观察者.md)
- [4. Disposable - 可被清除的资源](./RxSwiftStudy/4.Disposable-可被清除的资源.md)
- [5. Schedulers - 调度器](./RxSwiftStudy/5.Schedulers-调度器.md)
- [6. Error Handling - 错误处理](./RxSwiftStudy/6.ErrorHandling-错误处理.md)
- [7. Operator - 操作符](./RxSwiftStudy/7.Operator-操作符.md)
- [7.00 准备测试使用的方法](./RxSwiftStudy/Operator/Prepare.md)
- [7.01 Debug Operator](./RxSwiftStudy/Operator/Debug.md)
- [7.02 创建 Observable](./RxSwiftStudy/Operator/Create.md)
- [7.03 变换 Observable](./RxSwiftStudy/Operator/Transforming.md)
- [7.04 过滤 Observable](./RxSwiftStudy/Operator/Filtering.md)
- [7.05 联合 Observable](./RxSwiftStudy/Operator/Combining.md)
- [7.06 错误处理操作符](./RxSwiftStudy/Operator/ErrorHandling.md)
- [7.07 条件和 Bool 操作符](./RxSwiftStudy/Operator/Conditional_and_Boolean.md)
- [7.08 数学和聚合操作符](./RxSwiftStudy/Operator/Mathematical_and_Aggregate.md)
- [7.09 连接 Observable 操作符](./RxSwiftStudy/Operator/Connectable.md)
- [7.10 Time Operator](./RxSwiftStudy/Operator/Time.md)
- [7.11 Scheduler Operator](./RxSwiftStudy/Operator/Scheduler.md)
- [7.12 Materialize Operator](./RxSwiftStudy/Operator/Materialize.md)
- [7.13 Using Operator](./RxSwiftStudy/Operator/Using.md)
- [8. 其他相关资料](./RxSwiftStudy/8.其他相关资料.md)