随笔分类 - RxSwift
摘要:This documentation groups information about the various operators and examples of their usage into the following pages: These pages include informatio
阅读全文
摘要:http://reactivex.io The real power comes with the “reactive extensions” (hence “ReactiveX”) — operators that allow you to transform, combine, manipula
阅读全文
摘要:RxSwift 或许我们都听说过,但或许只知道 RxSwift 这个单词,长篇大论关于 RxSwift 的介绍往往使读者迷失在各种概念当中,却不知如何让它大展伸手。或许我们可以换一种姿势,一些应用场景会让我们产生共鸣,解决问题的方式由很多,为什么不找一种最优的呢?RxSwift也许会帮到你。 什么是
阅读全文
摘要:http://reactivex.io The Observer pattern done right ReactiveX is a combination of the best ideas from the Observer pattern, the Iterator pattern, and
阅读全文
摘要:封装、变换与处理 // Represents a push style sequence. public protocol ObservableType : ObservableConvertibleType { func subscribe<O: ObserverType>(_ observer:
阅读全文
摘要:The Reactive Extensions (Rx) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operator
阅读全文