NKFrameLayoutKit
NKFrameLayoutKit copied to clipboard
NKFrameLayout is a super fast and easy to use layout library for iOS and tvOS
trafficstars
NKFrameLayoutKit
NKFrameLayout is a super fast and easy to use layout library for iOS and tvOS.
The Objective-C version is deprecated, please check the Swift version here: FrameLayoutKit
Example

To run the example project, clone the repo, and run pod install from the Example directory first.
Requirements
Installation
NKFrameLayoutKit is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "NKFrameLayoutKit"
Hello world
let image = UIImage(named: "earth.jpg")
let label = UILabel()
label.text = "Hello World"
let layout = NKDoubleFrameLayout(direction: .horizontal, andViews: [image, label])
layout.spacing = 5
layout.frame = self.bounds

Benchmark
NKFrameLayoutKit is one of the fastest layout libraries.

See: Layout libraries benchmark's project
Todo
- [x] CocoaPods support
- [x] Objective-C version
- [x] Swift version
- [ ] Examples
- [ ] Documents
Author
Nam Kennic, [email protected]
License
NKFrameLayoutKit is available under the MIT license. See the LICENSE file for more info.