In Swift3, KVO the alpha of a UIView?
问题 It's "easy" to KVO a value in Swift3, using the technique in this great post... https://stackoverflow.com/a/25219216/294884 How do I KVO the alpha of a UIView? Goal: imagine a screen with a small view V. Screen has a large table view. Each cell has a small view CV. I want each CV to follow 1 the alpha of V, actually during an animation of the alpha of V. (The only real alternate I can think of is to CADisplayLink the cells and poll the alpha of V, which kind of sucks.) 1 Reason for that? It's