bumaociyuan / SnapKit

A Swift Autolayout DSL for iOS & OS X

Home Page:http://snapkit.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SnapKit is a DSL to make Auto Layout easy on both iOS and OS X.

Build Status Cocoapods Compatible Carthage compatible

import SnapKit

class MyViewController: UIViewController {

    lazy var box = UIView()

    override func viewDidLoad() {
        super.viewDidLoad()

        self.view.addSubview(box)
        box.snp_makeConstraints { (make) -> Void in
           make.width.height.equalTo(50)
           make.center.equalTo(self.view)
        }
    }

}

Resources

License

MIT license. See the LICENSE file for details.

About

A Swift Autolayout DSL for iOS & OS X

http://snapkit.io

License:MIT License


Languages

Language:Swift 98.1%Language:Objective-C 1.3%Language:Ruby 0.6%