No Description

Robert Payne 47d84e1e62 Merge pull request #251 from pawlowskialex/feature/0.40.0 9 years ago
CodeSnippets 51662d58bb Snap is now SnapKit 10 years ago
SnapKit.xcodeproj d00444d7d1 Migrated to latest Swift 3.0 syntax and latest macOS Cocoa API 9 years ago
SnapKit.xcworkspace 51662d58bb Snap is now SnapKit 10 years ago
Source b916d75956 Added sensible @discardableResult attributes for ConstraintMaker public functions 9 years ago
Tests 7ba532d597 Major overhaul 10 years ago
.gitignore 73e038f3ab Updated gitignore 10 years ago
.travis.yml 1754ffd536 Update Travis.ci 10 years ago
CHANGELOG.md 1071951dc9 Updated changelog 9 years ago
CONTRIBUTING.md 10e9c37f38 Added contributing document 10 years ago
LICENSE 51662d58bb Snap is now SnapKit 10 years ago
Package.swift c4dbfd9d78 Update license file on Package.swift 10 years ago
README.md ce3bb65b73 Updated readme 10 years ago
SnapKit.podspec 8355410d92 Swift 3.0 Migration 9 years ago

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.