Skip to content

Latest commit

History

History
25 lines (19 loc) 路 363 Bytes

README.md

File metadata and controls

25 lines (19 loc) 路 363 Bytes

Maker

馃嵃 A tiny syntactic sugar for Swift initializers. Only 15 lines of codes.

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

Alternative

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

Swift Package Manager

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