--- layout: default id: home ---

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

{% highlight swift %} let box = UIView() let container = UIView() container.addSubview(box) box.snp_makeConstraints { (make) -> Void in make.size.equalTo(50) make.center.equalTo(container) } {% endhighlight %}
makes
container
box