[DEPRECATED] Replaced with new implementation - LayoutUI
Powerful autolayout framework, that can manage UIView(NSView), CALayer and not rendered views. Has cross-hierarchy coordinate space. Implementation performed on rect-based constraints. Fast, asynchronous, declarative, cacheable, extensible. Supported iOS, macOS, tvOS, Linux.
Performed by [LayoutBenchmarkFramework](https://github.com/lucdion/LayoutFrameworkBenchmark)
Quick tutorial
Layout with CGLayout built using layout-blocks. To combine blocks into single unit use LayoutScheme entity (or other entities that has suffix Scheme).
let subviewsScheme = LayoutScheme(blocks: [
// ... layout blocks
])
To define block for “view” element use LayoutBlock entity, or just use convenience getter methods func layoutBlock(with:constraints:).
You have to carefully approach the creation of blocks, because anchors and based on them constraints not have priority and is applying sequentially.
Constraints should operate actual frames, therefore next layout block must have constraints with "views", that will not change frame.
Layout anchors are limiters, that is oriented on frame properties (such as sides, size, position). Any side-based anchors have three base implementations: alignment, limitation(cropping), pulling. Each this implementation have dependency on working space: inner and outer. Size-based anchors are represented by two implementations: size, insets. All layout anchors you can find in enum LayoutAnchor.
To create associated layout constraints use protocol LayoutConstraintProtocol. Framework provides such default implementations:
LayoutConstraint: simple associated constraint that uses var frame of passed element to constrain source rect. Use him to build dependency on external workspace.
AdjustLayoutConstraint: associated constraint to adjust size of source space. Only elements conform to protocol AdjustableLayoutElement can use it.
ContentLayoutConstraint: associated constraint that uses internal bounds to constrain, defined in ‘layoutBounds’ property of protocol LayoutElement. Use it if you need to create dependency on internal workspace. For example, element inside UIScrollView.
AnonymConstraint: constraint to restrict source space independently from external environment.
MutableLayoutConstraint: Layout constraint that creates possibility to change active state. You can find all this constraints through convenience functions in related elements. Use him to build layout blocks.
In common case, adjust constraints should be apply after any other constraints (but not always).
For implementing custom layout entities and save strong typed code, use static func build(_ base: Conformed) -> Self method.
Each layout-block has methods for layout, take snapshot and applying snapshot.
Consequently you may use layout-blocks for direct layout, background layout and cached layout:
// layout directly
layoutScheme.layout()
// layout in background
let bounds = view.bounds
DispatchQueue.global(qos: .background).async {
let snapshot = self.layoutScheme.snapshot(for: bounds)
DispatchQueue.main.sync {
self.layoutScheme.apply(snapshot: snapshot)
}
}
// cached layout
if UIDevice.current.orientation.isPortrait, let snapshot = portraitSnapshot {
layoutScheme.apply(snapshot: snapshot)
} else if UIDevice.current.orientation.isLandscape, let snapshot = landscapeSnapshot {
layoutScheme.apply(snapshot: snapshot)
} else {
layoutScheme.layout()
}
Framework provides LayoutGuide as analogue UILayoutGuide. It has possible to generate views and add them to hierarchy. LayoutGuide can used as invisible limiter and also as layout container. Default layout containers:
StackLayoutGuide - simple implementation of stack.
ScrollLayoutGuide - has similar interface with UIScrollView. By use him we can enable scrolling absolutely everywhere.
LayoutPlaceholder - single element container that can load view lazily. Has default implementations for CALayer - LayerPlaceholder and UIView - ViewPlaceholder.
UIViewPlaceholder - single element container based on UILayoutGuide.
UILayouGuide also adopts LayoutElement protocol. Therefore you can safely build constraints based on UIView.safeAreaLayoutGuide and others.
RTL
To enable Righ-to-Left mode use global configuration:
CGLConfiguration.default.isRTLMode = true
For more details, see documentation and example project.
CGLayout
[DEPRECATED] Replaced with new implementation - LayoutUI
Powerful autolayout framework, that can manage UIView(NSView), CALayer and not rendered views. Has cross-hierarchy coordinate space. Implementation performed on rect-based constraints.
Fast, asynchronous, declarative, cacheable, extensible. Supported iOS, macOS, tvOS, Linux.
Performed by [LayoutBenchmarkFramework](https://github.com/lucdion/LayoutFrameworkBenchmark)Quick tutorial
Layout with
CGLayoutbuilt using layout-blocks. To combine blocks into single unit useLayoutSchemeentity (or other entities that has suffixScheme).To define block for “view” element use
LayoutBlockentity, or just use convenience getter methodsfunc layoutBlock(with:constraints:).For understanding how need to built layout block, let’s see layout process in
LayoutBlock. For example we have this configuration:
You have to carefully approach the creation of blocks, because anchors and based on them constraints not have priority and is applying sequentially. Constraints should operate actual frames, therefore next layout block must have constraints with "views", that will not change frame.Layout anchors are limiters, that is oriented on frame properties (such as sides, size, position).
Any side-based anchors have three base implementations: alignment, limitation(cropping), pulling. Each this implementation have dependency on working space: inner and outer.
Size-based anchors are represented by two implementations: size, insets.
All layout anchors you can find in
enum LayoutAnchor.To create associated layout constraints use
protocol LayoutConstraintProtocol.Framework provides such default implementations:
LayoutConstraint: simple associated constraint that usesvar frameof passed element to constrain source rect. Use him to build dependency on external workspace.AdjustLayoutConstraint: associated constraint to adjust size of source space. Only elements conform toprotocol AdjustableLayoutElementcan use it.ContentLayoutConstraint: associated constraint that uses internal bounds to constrain, defined in ‘layoutBounds’ property ofprotocol LayoutElement. Use it if you need to create dependency on internal workspace. For example, element insideUIScrollView.AnonymConstraint: constraint to restrict source space independently from external environment.MutableLayoutConstraint: Layout constraint that creates possibility to change active state.You can find all this constraints through convenience functions in related elements. Use him to build layout blocks.
In common case, adjust constraints should be apply after any other constraints (but not always).
For implementing custom layout entities and save strong typed code, use
static func build(_ base: Conformed) -> Selfmethod.Each layout-block has methods for layout, take snapshot and applying snapshot. Consequently you may use layout-blocks for direct layout, background layout and cached layout:
Typical implementation
sizeThatFits(_:)methodLayoutGuide
Framework provides
LayoutGuideas analogueUILayoutGuide. It has possible to generate views and add them to hierarchy.LayoutGuidecan used as invisible limiter and also as layout container.Default layout containers:
StackLayoutGuide- simple implementation of stack.ScrollLayoutGuide- has similar interface withUIScrollView. By use him we can enable scrolling absolutely everywhere.LayoutPlaceholder- single element container that can load view lazily. Has default implementations forCALayer-LayerPlaceholderandUIView-ViewPlaceholder.UIViewPlaceholder- single element container based onUILayoutGuide.UILayouGuidealso adoptsLayoutElementprotocol. Therefore you can safely build constraints based onUIView.safeAreaLayoutGuideand others.RTL
To enable Righ-to-Left mode use global configuration:
For more details, see documentation and example project.
Code documentation
See here
Example
macOS, iOS, tvOS
To run the example project, clone the repo, and run
pod installfrom the Example directory first.Linux
To run the example project, clone the repo, and run
swift runfrom thelinux_exampledirectory first.Requirements
Swift 5
Installation
CGLayout is available through CocoaPods. To install it, simply add the following line to your Podfile:
Contributing
I will be happy your feedback, advices and pull requests. For more information read here
Author
Denis Koryttsev Email: koden.u8800@gmail.com Twitter: https://twitter.com/K_o_D_e_N
License
CGLayout is available under the MIT license. See the LICENSE file for more info.