Maker

🍰 一个为 Swift 初始化器准备的微型语法糖。只有 15 行代码。

let titleLabel = UILabel {
    $0.textColor = .red
    $0.text = "Hello"
}

替代方案

let titleLabel = UILabel().make {
    $0.textColor = .red
    $0.text = "Hello"
}

Swift 包管理器

https://github.com/mezhevikin/Maker.git