A flexbox framework for easy using.
pod 'DDFlexbox'
Recommend using templates to create flexbox views.
cd Script/
sh install.sh
An UITableViewCell layout likes:
flexbox.row.padding(10).alignItems(.center).setup({ (b) in
b.bindView(myImageView).width(40).height(40)
b.blocker(width: 10)
b.column.flexGrow(1).flexShrink(1).setup { (b) in
b.bindView(myTextLabel)
b.bindView(myDetailTextLabel)
}
})
FlexboxDebugEnable = true
- Easy to use. It more simple than AutoLayout.
- Work well with AutoLayout.
- Manage by node tree, not view tree. So you do not need concern
addSubview
and the view hierarchy. - Virtual node to reduce the deep of view tree.