CBuilder
CBuilder copied to clipboard
๐งก A Swift Autolayout DSL for iOS ๐๐๐
CBuilder
โจ Super sweet syntactic sugar for Constraints in UIKit.
โจ A Swift Autolayout DSL for iOS
At a Glance
Before
//In your controller
let myView = View()
view.addSubview(myView)
myView.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activate([
myView.topAnchor.constraint(equalTo: view.topAnchor),
myView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
myView.bottomAnchor.constraint(equalTo: view.bottomAnchor),
myView.trailingAnchor.constraint(equalTo: view.trailingAnchor)
])
}
Then:
view.addSubview(myView)
myView.cBuild(make: .fillSuperview)
Small Advantages
-
You can use
closure
to construct the constraint to your view.label.cBuilder { $0.leading.equal(to: leadingAnchor, offsetBy: 20) $0.top.equal(to: topAnchor, offsetBy: 10) }
-
Want to set your constraints with your own types? Just make that
label.cBuild(top: topAnchor, bottom: bottomAnchor, left: leadingAnchor, right: trailingAnchor)
-
A lot times you have set the view in center to super view, so...
label.cBuild(make: .centerInSuperView)
Installation
-
Clone project
- Open your Xcode, select a simulator, click the play button or
cmd + R
- Test in your cases, and don't worry to use
TranslateAutoRezingsMas.............................
CocoaPods
# Podfile
use_frameworks!
target 'YOUR_TARGET_NAME' do
pod 'CBuilder'
end
Replace YOUR_TARGET_NAME
and then, in the Podfile
directory, type:
$ pod install
License
CBuilder is under MIT license. See the LICENSE file for more info.