Reference article
http://pengguo.xyz/tutorial/2017/03/15/Swift-World-Design-Patterns-Decorator.html
https://medium.com/design-patterns-in-swift/design-patterns-in-swift-decorator-pattern-2026e7112869
https://medium.com/jeremy-codes/decorator-pattern-in-swift-e5fa11ea3c3f
什么是裝飾者模式
在面向?qū)ο蟮木幊汤锝ぃb飾者模式可以動態(tài)的添加behavior到object,而且不影響其他類。
Core component (Macbook)
Concrete Component (Macbook air)
Decorator (Macbook decorator)
Concrete Decorator(Macbook with touch bar)好處
處理類似的對象抑钟,復(fù)雜的結(jié)構(gòu)。不至于子類過多應(yīng)用場景(Demo)
https://github.com/SamStone92/DesignPatternsInSwift