🍰 一个为 Swift 初始化器准备的微型语法糖。只有 15 行代码。
let titleLabel = UILabel { $0.textColor = .red $0.text = "Hello" }
let titleLabel = UILabel().make { $0.textColor = .red $0.text = "Hello" }
https://github.com/mezhevikin/Maker.git