respan / ChainableSwift

Chainable standart library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChainableSwift 🔗

Version License Platform

Work in progress 🙄

Why?

Because you can write this:

let label = UILabel()
                .text("My awesome title")
                .textColor(.white)
                .backgroundColor(.black)
                .textAlignment(.center)
                .font(.boldSystemFont(ofSize: 17))
                .layerCornerRadius(2)
                .clipsToBounds(true)

instead of this:

let label = UILabel()

label.text = "My awesome title"
label.textColor = .white
label.backgroundColor = .black
label.textAlignment = .center
label.font = .boldSystemFont(ofSize: 17)
label.layer.cornerRadius = 2
label.clipsToBounds = true

The awesome thing is, you can thin your viewDidLoad or init methods:

class MyIntroView: UIView {
    let coverView = UIView().backgroundColor(.red)
    
    let titleLabel = UILabel().font(.boldSystemFont(ofSize: 17))
    let subTitleLabel = UILabel().font(.systemFont(ofSize: 12)).textColor(.gray)

    init() {
        super.init(frame: CGRect.zero)

        addSubview(coverView)
        coverView.addSubview(titleLabel)
        coverView.addSubview(subTitleLabel)
        // ...
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    func configure(title: String, subtitle: String?) {
        titleLabel.text = title
        subTitleLabel.text = subtitle
    }
}

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

ChainableSwift is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "ChainableSwift"

Then run pod install command.

Author

Denis Sushko, respandv@gmail.com

License

ChainableSwift is available under the MIT license. See the LICENSE file for more info.

About

Chainable standart library

License:MIT License


Languages

Language:Swift 98.0%Language:Ruby 2.0%