Go to file
Robert Payne 80956bc3b8 Merge pull request #201 from sger/develop
Added some examples
2016-03-29 17:26:44 +13:00
CodeSnippets Snap is now SnapKit 2015-04-15 23:07:50 +12:00
Example-iOS fixes 2016-03-01 13:23:33 +02:00
SnapKit.xcodeproj updates 2016-03-01 13:13:24 +02:00
SnapKit.xcworkspace Snap is now SnapKit 2015-04-15 23:07:50 +12:00
Source Update Documentation to Swift 2.0 syntax 2016-03-25 10:58:04 +01:00
Tests Changed identifier to label/labeled 2016-03-21 18:53:30 -05:00
.gitignore Updated gitignore 2015-04-12 22:38:56 +12:00
.travis.yml Update travis to use Xcode 7.3 2016-03-22 10:05:33 +01:00
CHANGELOG.md Updated Changelog 2016-03-25 16:32:41 +13:00
CONTRIBUTING.md Added contributing document 2015-09-29 21:26:40 +13:00
ISSUE_TEMPLATE.md Simplified issue template 2016-03-25 16:28:14 +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 Optimising banner image in readme 2016-01-27 01:15:01 +13:00
SnapKit.podspec Versioning to 0.20.0 2016-03-25 16:28:21 +13: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.