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
To run the example project, clone the repo, and run pod install
from the Example directory first.
NKFrameLayoutKit is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "NKFrameLayoutKit"
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
NKFrameLayoutKit is one of the fastest layout libraries.
See: Layout libraries benchmark's project
- CocoaPods support
- Objective-C version
- Swift version
- Examples
- Documents
Nam Kennic, namkennic@me.com
NKFrameLayoutKit is available under the MIT license. See the LICENSE file for more info.