Popularity
0.5
Stable
Activity
0.0
Stable
3
3
2

Programming language: Objective-C
License: MIT License
Tags: Layout    
Latest version: v0.2.3

QLayout alternatives and similar libraries

Based on the "Layout" category.
Alternatively, view QLayout alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of QLayout or a related project?

Add another 'Layout' Library

README

QLayout is an Utility to make Auto Layout easy on iOS.

Contents

Requirements

  • iOS 8.0+
  • Swift 3.0+

Installation

CocoaPods

To integrate QLayout into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'QLayout'
end

Then, run the following command:

$ pod install

Usage

Quick Start

import QLayout

class ViewController: UIViewController {

    lazy var subView = UIView()

    override func viewDidLoad() {
        super.viewDidLoad()

        self.view.addSubview(subView)

        subView.layout.width.height.equalTo(50)
        subView.layout.center.equalTo(view)
    }

}

Credits

License

QLayout is released under the MIT license. See LICENSE for details.


*Note that all licence references and agreements mentioned in the QLayout README section above are relevant to that project's source code only.