Adds groups to links in README.md
This commit is contained in:
parent
dc9a0f5505
commit
29c9d9df14
|
|
@ -10,7 +10,7 @@ Observable.combineLatest(firstName.rx_text, lastName.rx_text) { $0 + " " + $1 }
|
|||
.bindTo(greetingLabel.rx_text)
|
||||
```
|
||||
|
||||
this also works with `UITableView`s and `UICollectionView`s.
|
||||
This also works with `UITableView`s and `UICollectionView`s.
|
||||
|
||||
```swift
|
||||
viewModel
|
||||
|
|
|
|||
29
README.md
29
README.md
|
|
@ -2,7 +2,6 @@
|
|||
======================================
|
||||
|
||||
[](https://travis-ci.org/ReactiveX/RxSwift)  
|
||||
[](http://slack.rxswift.org) [slack.rxswift.org](http://slack.rxswift.org)
|
||||
|
||||
Xcode 7 Swift 2.1 required
|
||||
|
||||
|
|
@ -22,39 +21,47 @@ KVO observing, async operations and streams are all unified under [abstraction o
|
|||
|
||||
## I came here because I want to ...
|
||||
|
||||
* Understand why people are using Rx. [Why to Use Rx](Documentation/Why.md)
|
||||
* Understand how RxSwift works. [Getting Started](Documentation/GettingStarted.md)
|
||||
* Understand what is that `Driver`, `ControlProperty`, `Variable` ... and why do they exist. [Units](Documentation/Units.md)
|
||||
* Understand the math behind Rx. [Math Behind Rx](Documentation/MathBehindRx.md)
|
||||
* Understand what are those hot/cold observable sequences. [Hot vs Cold Observable Sequences](Documentation/HotAndColdObservables.md)
|
||||
##### ... understand
|
||||
|
||||
* Why use Rx. [Why to Use Rx](Documentation/Why.md)
|
||||
* How RxSwift works. [Getting Started](Documentation/GettingStarted.md)
|
||||
* What is that `Driver`, `ControlProperty`, `Variable` ... and why do they exist. [Units](Documentation/Units.md)
|
||||
* The math behind Rx. [Math Behind Rx](Documentation/MathBehindRx.md)
|
||||
* What are those hot/cold observable sequences. [Hot vs Cold Observable Sequences](Documentation/HotAndColdObservables.md)
|
||||
* Glance at the public API. [API Summary](Documentation/API.md)
|
||||
|
||||
###### ... install
|
||||
|
||||
* Integrate RxSwift/RxCocoa with my app. [Installation Guide](Documentation/Installation.md)
|
||||
|
||||
###### ... hack around
|
||||
|
||||
* Hack with example app. [Running Example App](Documentation/ExampleApp.md)
|
||||
* Hack with operators in playgrounds. [Playgrounds](Documentation/Playgrounds.md)
|
||||
* with example app. [Running Example App](Documentation/ExampleApp.md)
|
||||
* with operators in playgrounds. [Playgrounds](Documentation/Playgrounds.md)
|
||||
|
||||
###### ... interact
|
||||
|
||||
* All of this is great, but I want to meet other people using this library and exchange experience, brainstorm, ask about real world problems and solutions. [Join Slack Channel](http://slack.rxswift.org/) [](http://slack.rxswift.org)
|
||||
* Report a problem using the library. [Open an Issue With Bug Template](Documentation/IssueTemplate.md)
|
||||
* Request a new feature. [Open an Issue With Feature Request Template](Documentation/NewFeatureRequestTemplate.md)
|
||||
|
||||
|
||||
##### ... compare
|
||||
|
||||
* Compare with other libraries. [Comparison](Documentation/ComparisonWithOtherLibraries.md)
|
||||
|
||||
|
||||
* Glance at the public API. [API Summary](Documentation/API.md)
|
||||
|
||||
##### ... find compatible libraries
|
||||
|
||||
* Find RxSwift compatible libraries from [RxSwiftCommunity](https://github.com/RxSwiftCommunity)
|
||||
* [Pods using RxSwift](https://cocoapods.org/?q=uses%3Arxswift)
|
||||
|
||||
##### ... see the broader vision
|
||||
|
||||
* Does this exist for Android also? [RxJava](https://github.com/ReactiveX/RxJava)
|
||||
* Where is all of this going, what is the future, what about reactive architectures, how do you design entire apps this way? [Cycle.js](https://github.com/cyclejs/cycle-core) - this is javascript, but [RxJS](https://github.com/Reactive-Extensions/RxJS) is javascript version of Rx.
|
||||
|
||||
## References
|
||||
##### References
|
||||
|
||||
* [http://reactivex.io/](http://reactivex.io/)
|
||||
* [Reactive Extensions GitHub (GitHub)](https://github.com/Reactive-Extensions)
|
||||
|
|
|
|||
Loading…
Reference in New Issue