├── .gitignore ├── .travis.yml ├── MasonryExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── MasonryExample.xcscheme │ └── MasonryExampleTests.xcscheme ├── MasonryExample.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── MasonryExample ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Case1 │ ├── Case1ViewController.h │ └── Case1ViewController.m ├── Case10 │ ├── Case10ViewController.h │ └── Case10ViewController.m ├── Case11 │ ├── Case11ViewController.h │ └── Case11ViewController.m ├── Case12 │ ├── Case12ViewController.h │ └── Case12ViewController.m ├── Case13 │ ├── Case13TableViewCell.h │ ├── Case13TableViewCell.m │ ├── Case13ViewController.h │ └── Case13ViewController.m ├── Case14 │ ├── Case14Cell.h │ ├── Case14Cell.m │ ├── Case14StairView.h │ ├── Case14StairView.m │ ├── Case14ViewController.h │ └── Case14ViewController.m ├── Case15 │ ├── Case15ViewController.h │ └── Case15ViewController.m ├── Case2 │ ├── Case2ViewController.h │ └── Case2ViewController.m ├── Case3 │ ├── Case3ViewController.h │ └── Case3ViewController.m ├── Case4 │ ├── Case4Cell.h │ ├── Case4Cell.m │ ├── Case4DataEntity.h │ ├── Case4DataEntity.m │ ├── Case4ViewController.h │ └── Case4ViewController.m ├── Case5 │ ├── Case5ViewController.h │ └── Case5ViewController.m ├── Case6 │ ├── Case6ItemView.h │ ├── Case6ItemView.m │ ├── Case6ViewController.h │ └── Case6ViewController.m ├── Case7 │ ├── Case7ViewController.h │ └── Case7ViewController.m ├── Case8 │ ├── Case8Cell.h │ ├── Case8Cell.m │ ├── Case8DataEntity.h │ ├── Case8DataEntity.m │ ├── Case8ViewController.h │ └── Case8ViewController.m ├── Case9 │ ├── Case9ViewController.h │ └── Case9ViewController.m ├── Common │ ├── Common.h │ └── Common.m ├── Debug │ ├── UIView+TTGHook.h │ └── UIView+TTGHook.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── bluefaces_1.imageset │ │ ├── Contents.json │ │ └── bluefaces_1.png │ ├── bluefaces_2.imageset │ │ ├── Contents.json │ │ └── bluefaces_2.png │ ├── bluefaces_3.imageset │ │ ├── Contents.json │ │ └── bluefaces_3.png │ ├── bluefaces_4.imageset │ │ ├── Contents.json │ │ └── bluefaces_4.png │ ├── dog_big.imageset │ │ ├── Contents.json │ │ └── dog_big@2x.png │ ├── dog_middle.imageset │ │ ├── Contents.json │ │ └── dog_middle@2x.png │ ├── dog_small.imageset │ │ ├── Contents.json │ │ └── dog_small@2x.png │ └── parallax_header_back.imageset │ │ ├── Contents.json │ │ └── parallax_header_back.jpg ├── MainViewController.h ├── MainViewController.m └── Supporting Files │ ├── Info.plist │ └── main.m ├── MasonryExampleTests ├── MasonryExampleTests.m └── Supporting Files │ └── Info.plist ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ └── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ └── Public │ │ └── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ └── Pods-MasonryExample │ ├── Pods-MasonryExample-acknowledgements.markdown │ ├── Pods-MasonryExample-acknowledgements.plist │ ├── Pods-MasonryExample-dummy.m │ ├── Pods-MasonryExample-frameworks.sh │ ├── Pods-MasonryExample-resources.sh │ ├── Pods-MasonryExample.debug.xcconfig │ ├── Pods-MasonryExample.release.xcconfig │ └── copy-framework-resources.rb ├── README.md └── Resources ├── case1.png ├── case10.png ├── case11.png ├── case13.png ├── case14.png ├── case15.png ├── case2.png ├── case3.png ├── case4.png ├── case5.png ├── case6.png ├── case7.png ├── case8.png ├── case9.png └── demo_screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/.travis.yml -------------------------------------------------------------------------------- /MasonryExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MasonryExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MasonryExample.xcodeproj/xcshareddata/xcschemes/MasonryExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample.xcodeproj/xcshareddata/xcschemes/MasonryExample.xcscheme -------------------------------------------------------------------------------- /MasonryExample.xcodeproj/xcshareddata/xcschemes/MasonryExampleTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample.xcodeproj/xcshareddata/xcschemes/MasonryExampleTests.xcscheme -------------------------------------------------------------------------------- /MasonryExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MasonryExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MasonryExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/AppDelegate.h -------------------------------------------------------------------------------- /MasonryExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/AppDelegate.m -------------------------------------------------------------------------------- /MasonryExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /MasonryExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MasonryExample/Case1/Case1ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case1/Case1ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case1/Case1ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case1/Case1ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case10/Case10ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case10/Case10ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case10/Case10ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case10/Case10ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case11/Case11ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case11/Case11ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case11/Case11ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case11/Case11ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case12/Case12ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case12/Case12ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case12/Case12ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case12/Case12ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case13/Case13TableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case13/Case13TableViewCell.h -------------------------------------------------------------------------------- /MasonryExample/Case13/Case13TableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case13/Case13TableViewCell.m -------------------------------------------------------------------------------- /MasonryExample/Case13/Case13ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case13/Case13ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case13/Case13ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case13/Case13ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case14/Case14Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case14/Case14Cell.h -------------------------------------------------------------------------------- /MasonryExample/Case14/Case14Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case14/Case14Cell.m -------------------------------------------------------------------------------- /MasonryExample/Case14/Case14StairView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case14/Case14StairView.h -------------------------------------------------------------------------------- /MasonryExample/Case14/Case14StairView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case14/Case14StairView.m -------------------------------------------------------------------------------- /MasonryExample/Case14/Case14ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case14/Case14ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case14/Case14ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case14/Case14ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case15/Case15ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case15/Case15ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case15/Case15ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case15/Case15ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case2/Case2ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case2/Case2ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case2/Case2ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case2/Case2ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case3/Case3ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case3/Case3ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case3/Case3ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case3/Case3ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case4/Case4Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case4/Case4Cell.h -------------------------------------------------------------------------------- /MasonryExample/Case4/Case4Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case4/Case4Cell.m -------------------------------------------------------------------------------- /MasonryExample/Case4/Case4DataEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case4/Case4DataEntity.h -------------------------------------------------------------------------------- /MasonryExample/Case4/Case4DataEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case4/Case4DataEntity.m -------------------------------------------------------------------------------- /MasonryExample/Case4/Case4ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case4/Case4ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case4/Case4ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case4/Case4ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case5/Case5ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case5/Case5ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case5/Case5ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case5/Case5ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case6/Case6ItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case6/Case6ItemView.h -------------------------------------------------------------------------------- /MasonryExample/Case6/Case6ItemView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case6/Case6ItemView.m -------------------------------------------------------------------------------- /MasonryExample/Case6/Case6ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case6/Case6ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case6/Case6ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case6/Case6ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case7/Case7ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case7/Case7ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case7/Case7ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case7/Case7ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case8/Case8Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case8/Case8Cell.h -------------------------------------------------------------------------------- /MasonryExample/Case8/Case8Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case8/Case8Cell.m -------------------------------------------------------------------------------- /MasonryExample/Case8/Case8DataEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case8/Case8DataEntity.h -------------------------------------------------------------------------------- /MasonryExample/Case8/Case8DataEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case8/Case8DataEntity.m -------------------------------------------------------------------------------- /MasonryExample/Case8/Case8ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case8/Case8ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case8/Case8ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case8/Case8ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Case9/Case9ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case9/Case9ViewController.h -------------------------------------------------------------------------------- /MasonryExample/Case9/Case9ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Case9/Case9ViewController.m -------------------------------------------------------------------------------- /MasonryExample/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Common/Common.h -------------------------------------------------------------------------------- /MasonryExample/Common/Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Common/Common.m -------------------------------------------------------------------------------- /MasonryExample/Debug/UIView+TTGHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Debug/UIView+TTGHook.h -------------------------------------------------------------------------------- /MasonryExample/Debug/UIView+TTGHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Debug/UIView+TTGHook.m -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/bluefaces_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/bluefaces_1.imageset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/bluefaces_1.imageset/bluefaces_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/bluefaces_1.imageset/bluefaces_1.png -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/bluefaces_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/bluefaces_2.imageset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/bluefaces_2.imageset/bluefaces_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/bluefaces_2.imageset/bluefaces_2.png -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/bluefaces_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/bluefaces_3.imageset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/bluefaces_3.imageset/bluefaces_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/bluefaces_3.imageset/bluefaces_3.png -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/bluefaces_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/bluefaces_4.imageset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/bluefaces_4.imageset/bluefaces_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/bluefaces_4.imageset/bluefaces_4.png -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/dog_big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/dog_big.imageset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/dog_big.imageset/dog_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/dog_big.imageset/dog_big@2x.png -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/dog_middle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/dog_middle.imageset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/dog_middle.imageset/dog_middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/dog_middle.imageset/dog_middle@2x.png -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/dog_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/dog_small.imageset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/dog_small.imageset/dog_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/dog_small.imageset/dog_small@2x.png -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/parallax_header_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/parallax_header_back.imageset/Contents.json -------------------------------------------------------------------------------- /MasonryExample/Images.xcassets/parallax_header_back.imageset/parallax_header_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Images.xcassets/parallax_header_back.imageset/parallax_header_back.jpg -------------------------------------------------------------------------------- /MasonryExample/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/MainViewController.h -------------------------------------------------------------------------------- /MasonryExample/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/MainViewController.m -------------------------------------------------------------------------------- /MasonryExample/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Supporting Files/Info.plist -------------------------------------------------------------------------------- /MasonryExample/Supporting Files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExample/Supporting Files/main.m -------------------------------------------------------------------------------- /MasonryExampleTests/MasonryExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExampleTests/MasonryExampleTests.m -------------------------------------------------------------------------------- /MasonryExampleTests/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/MasonryExampleTests/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Pods-MasonryExample/Pods-MasonryExample.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MasonryExample/copy-framework-resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Pods/Target Support Files/Pods-MasonryExample/copy-framework-resources.rb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/README.md -------------------------------------------------------------------------------- /Resources/case1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case1.png -------------------------------------------------------------------------------- /Resources/case10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case10.png -------------------------------------------------------------------------------- /Resources/case11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case11.png -------------------------------------------------------------------------------- /Resources/case13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case13.png -------------------------------------------------------------------------------- /Resources/case14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case14.png -------------------------------------------------------------------------------- /Resources/case15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case15.png -------------------------------------------------------------------------------- /Resources/case2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case2.png -------------------------------------------------------------------------------- /Resources/case3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case3.png -------------------------------------------------------------------------------- /Resources/case4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case4.png -------------------------------------------------------------------------------- /Resources/case5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case5.png -------------------------------------------------------------------------------- /Resources/case6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case6.png -------------------------------------------------------------------------------- /Resources/case7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case7.png -------------------------------------------------------------------------------- /Resources/case8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case8.png -------------------------------------------------------------------------------- /Resources/case9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/case9.png -------------------------------------------------------------------------------- /Resources/demo_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zekunyan/AutolayoutExampleWithMasonry/HEAD/Resources/demo_screenshot.png --------------------------------------------------------------------------------