Go to file
Robert Payne 8fc933a5c2 Fix up legacy deployment and availability of APIs 2016-08-03 14:39:47 +12:00
CodeSnippets Snap is now SnapKit 2015-04-15 23:07:50 +12:00
SnapKit.xcodeproj Migrated to latest Swift 3.0 syntax and latest macOS Cocoa API 2016-06-28 15:31:43 +03:00
SnapKit.xcworkspace Snap is now SnapKit 2015-04-15 23:07:50 +12:00
Source Fix up legacy deployment and availability of APIs 2016-08-03 14:39:47 +12:00
Tests Major overhaul 2016-01-26 23:49:04 +13:00
.gitignore Updated gitignore 2015-04-12 22:38:56 +12:00
.travis.yml Update Travis.ci 2015-09-13 01:13:13 +12:00
CHANGELOG.md Updated changelog 2016-05-19 17:02:10 +12:00
CONTRIBUTING.md Added contributing document 2015-09-29 21:26:40 +13:00
LICENSE Snap is now SnapKit 2015-04-15 23:07:50 +12:00
Package.swift Update license file on Package.swift 2016-01-21 11:06:31 +13:00
README.md Updated readme 2016-01-27 00:00:26 +13:00
SnapKit.podspec Updated podspec 2016-07-06 09:09:31 -07:00

README.md

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.