├── .gitignore ├── Classes ├── ConstraintLayoutTestViewController.h ├── ConstraintLayoutTestViewController.m ├── ConstraintLayoutTestViewController.xib ├── JWConstraint.h ├── JWConstraint.m ├── JWConstraintGraphNode.h ├── JWConstraintGraphNode.m ├── JWConstraintLayoutManager.h ├── JWConstraintLayoutManager.m ├── JWLayoutManager.h ├── JWWrapLayoutManager.h ├── JWWrapLayoutManager.m ├── LayoutTestAppDelegate.h ├── LayoutTestAppDelegate.m ├── UIView+LayoutManager.h └── UIView+LayoutManager.m ├── JWLayoutViews.podspec ├── LICENCE ├── LayoutTest-Info.plist ├── LayoutTest.xcodeproj └── project.pbxproj ├── LayoutTestViewController.xib ├── LayoutTest_Prefix.pch ├── MainWindow.xib ├── README └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/ConstraintLayoutTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/ConstraintLayoutTestViewController.h -------------------------------------------------------------------------------- /Classes/ConstraintLayoutTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/ConstraintLayoutTestViewController.m -------------------------------------------------------------------------------- /Classes/ConstraintLayoutTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/ConstraintLayoutTestViewController.xib -------------------------------------------------------------------------------- /Classes/JWConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWConstraint.h -------------------------------------------------------------------------------- /Classes/JWConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWConstraint.m -------------------------------------------------------------------------------- /Classes/JWConstraintGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWConstraintGraphNode.h -------------------------------------------------------------------------------- /Classes/JWConstraintGraphNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWConstraintGraphNode.m -------------------------------------------------------------------------------- /Classes/JWConstraintLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWConstraintLayoutManager.h -------------------------------------------------------------------------------- /Classes/JWConstraintLayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWConstraintLayoutManager.m -------------------------------------------------------------------------------- /Classes/JWLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWLayoutManager.h -------------------------------------------------------------------------------- /Classes/JWWrapLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWWrapLayoutManager.h -------------------------------------------------------------------------------- /Classes/JWWrapLayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/JWWrapLayoutManager.m -------------------------------------------------------------------------------- /Classes/LayoutTestAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/LayoutTestAppDelegate.h -------------------------------------------------------------------------------- /Classes/LayoutTestAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/LayoutTestAppDelegate.m -------------------------------------------------------------------------------- /Classes/UIView+LayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/UIView+LayoutManager.h -------------------------------------------------------------------------------- /Classes/UIView+LayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/Classes/UIView+LayoutManager.m -------------------------------------------------------------------------------- /JWLayoutViews.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/JWLayoutViews.podspec -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/LICENCE -------------------------------------------------------------------------------- /LayoutTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/LayoutTest-Info.plist -------------------------------------------------------------------------------- /LayoutTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/LayoutTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LayoutTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/LayoutTestViewController.xib -------------------------------------------------------------------------------- /LayoutTest_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/LayoutTest_Prefix.pch -------------------------------------------------------------------------------- /MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/MainWindow.xib -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/README -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinberg/JWLayoutViews/HEAD/main.m --------------------------------------------------------------------------------