mirror of https://github.com/SnapKit/SnapKit
9c321612c0 | ||
---|---|---|
CodeSnippets | ||
SnapKit.xcodeproj | ||
SnapKit.xcworkspace | ||
Source | ||
Tests | ||
.gitignore | ||
.travis.yml | ||
CHANGELOG.md | ||
LICENSE | ||
README.md | ||
SnapKit.podspec |
README.md
SnapKit is a DSL to make Auto Layout easy on both iOS and OS X.
SnapKit does build just fine, Travis.ci doesn't support Swift 1.2 yet so this will show as failing until it is supported.
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.