(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| // | |
| // FadeScrollView.swift | |
| // | |
| // Created by Luís Machado on 23/06/2017. | |
| // Copyright © 2017 Luis Machado. All rights reserved. | |
| // | |
| import UIKit | |
| class FadeScrollView: UIScrollView, UIScrollViewDelegate { |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| $(function () { | |
| "use strict"; | |
| // for better performance - to avoid searching in DOM | |
| var content = $('#content'); | |
| var input = $('#input'); | |
| var status = $('#status'); | |
| // my color assigned by the server | |
| var myColor = false; |