├── .gitignore ├── CHLayout.h ├── CHLayoutConstraint.h ├── CHLayoutConstraint.m ├── CHLayoutManager-Info.plist ├── CHLayoutManager.h ├── CHLayoutManager.m ├── CHLayoutManager.xcodeproj └── project.pbxproj ├── CHLayoutManagerAppDelegate.h ├── CHLayoutManagerAppDelegate.m ├── CHLayoutManager_Prefix.pch ├── English.lproj ├── InfoPlist.strings └── MainMenu.xib ├── LICENSE ├── NSNumber+CHLayout.h ├── NSNumber+CHLayout.m ├── NSView+CHLayout.h ├── NSView+CHLayout.m ├── README.markdown ├── SinTransformer.h ├── SinTransformer.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/.gitignore -------------------------------------------------------------------------------- /CHLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayout.h -------------------------------------------------------------------------------- /CHLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutConstraint.h -------------------------------------------------------------------------------- /CHLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutConstraint.m -------------------------------------------------------------------------------- /CHLayoutManager-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutManager-Info.plist -------------------------------------------------------------------------------- /CHLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutManager.h -------------------------------------------------------------------------------- /CHLayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutManager.m -------------------------------------------------------------------------------- /CHLayoutManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CHLayoutManagerAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutManagerAppDelegate.h -------------------------------------------------------------------------------- /CHLayoutManagerAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutManagerAppDelegate.m -------------------------------------------------------------------------------- /CHLayoutManager_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/CHLayoutManager_Prefix.pch -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/LICENSE -------------------------------------------------------------------------------- /NSNumber+CHLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/NSNumber+CHLayout.h -------------------------------------------------------------------------------- /NSNumber+CHLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/NSNumber+CHLayout.m -------------------------------------------------------------------------------- /NSView+CHLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/NSView+CHLayout.h -------------------------------------------------------------------------------- /NSView+CHLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/NSView+CHLayout.m -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/README.markdown -------------------------------------------------------------------------------- /SinTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/SinTransformer.h -------------------------------------------------------------------------------- /SinTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/SinTransformer.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/CHLayoutManager/HEAD/main.m --------------------------------------------------------------------------------