├── .gitignore ├── .travis.yml ├── Example ├── Example.xcodeproj │ └── project.pbxproj └── Example │ ├── ALAppDelegate.h │ ├── ALAppDelegate.m │ ├── ALViewController.h │ ├── ALViewController.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Example-Info.plist │ ├── Example-Prefix.pch │ ├── ar.lproj │ ├── ALViewController.xib │ ├── InfoPlist.strings │ └── Localizable.strings │ ├── en.lproj │ ├── ALViewController.xib │ ├── InfoPlist.strings │ └── Localizable.strings │ └── main.m ├── LICENSE ├── README.md ├── Source ├── UIView+AutoLayout.h └── UIView+AutoLayout.m ├── Tests ├── AutoLayout.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── AutoLayout.xcscheme ├── AutoLayout │ ├── ALAppDelegate.h │ ├── ALAppDelegate.m │ ├── AutoLayout-Info.plist │ ├── AutoLayout-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── AutoLayoutTests │ ├── AutoLayoutCenteringTests.m │ ├── AutoLayoutInstallationTests.m │ ├── AutoLayoutInstantiationTests.m │ ├── AutoLayoutInternalTests.m │ ├── AutoLayoutPinEdgesTests.m │ ├── AutoLayoutPriorityTests.m │ ├── AutoLayoutRemovalTests.m │ ├── AutoLayoutTestBase.h │ ├── AutoLayoutTestBase.m │ ├── AutoLayoutTests-Info.plist │ ├── UIView+AutoLayoutInternal.h │ └── en.lproj │ └── InfoPlist.strings └── UIView+AutoLayout.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example/ALAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/ALAppDelegate.h -------------------------------------------------------------------------------- /Example/Example/ALAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/ALAppDelegate.m -------------------------------------------------------------------------------- /Example/Example/ALViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/ALViewController.h -------------------------------------------------------------------------------- /Example/Example/ALViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/ALViewController.m -------------------------------------------------------------------------------- /Example/Example/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/Default-568h@2x.png -------------------------------------------------------------------------------- /Example/Example/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/Default.png -------------------------------------------------------------------------------- /Example/Example/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/Default@2x.png -------------------------------------------------------------------------------- /Example/Example/Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/Example-Info.plist -------------------------------------------------------------------------------- /Example/Example/Example-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/Example-Prefix.pch -------------------------------------------------------------------------------- /Example/Example/ar.lproj/ALViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/ar.lproj/ALViewController.xib -------------------------------------------------------------------------------- /Example/Example/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Example/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Example/en.lproj/ALViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/en.lproj/ALViewController.xib -------------------------------------------------------------------------------- /Example/Example/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Example/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Example/Example/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/README.md -------------------------------------------------------------------------------- /Source/UIView+AutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Source/UIView+AutoLayout.h -------------------------------------------------------------------------------- /Source/UIView+AutoLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Source/UIView+AutoLayout.m -------------------------------------------------------------------------------- /Tests/AutoLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/AutoLayout.xcodeproj/xcshareddata/xcschemes/AutoLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout.xcodeproj/xcshareddata/xcschemes/AutoLayout.xcscheme -------------------------------------------------------------------------------- /Tests/AutoLayout/ALAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout/ALAppDelegate.h -------------------------------------------------------------------------------- /Tests/AutoLayout/ALAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout/ALAppDelegate.m -------------------------------------------------------------------------------- /Tests/AutoLayout/AutoLayout-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout/AutoLayout-Info.plist -------------------------------------------------------------------------------- /Tests/AutoLayout/AutoLayout-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout/AutoLayout-Prefix.pch -------------------------------------------------------------------------------- /Tests/AutoLayout/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/AutoLayout/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Tests/AutoLayout/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Tests/AutoLayout/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayout/main.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutCenteringTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutCenteringTests.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutInstallationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutInstallationTests.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutInstantiationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutInstantiationTests.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutInternalTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutInternalTests.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutPinEdgesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutPinEdgesTests.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutPriorityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutPriorityTests.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutRemovalTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutRemovalTests.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutTestBase.h -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutTestBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutTestBase.m -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/AutoLayoutTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/AutoLayoutTests-Info.plist -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/UIView+AutoLayoutInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/Tests/AutoLayoutTests/UIView+AutoLayoutInternal.h -------------------------------------------------------------------------------- /Tests/AutoLayoutTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UIView+AutoLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smileyborg/UIView-AutoLayout/HEAD/UIView+AutoLayout.podspec --------------------------------------------------------------------------------