mezhevikin / Maker

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

License:MIT License


Languages

Language:Swift 100.0%