├── .gitignore ├── 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 ├── TestCollectionView.xcodeproj ├── Podfile ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── TestCollectionView ├── .Podfile.swp ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Icon-60.png ├── Info.plist ├── LastCell.h ├── LastCell.m ├── ViewController.h ├── ViewController.m └── main.m ├── TestCollectionViewTests ├── Info.plist └── TestCollectionViewTests.m └── TestCollectionViewUITests ├── Info.plist └── TestCollectionViewUITests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/Masonry.h -------------------------------------------------------------------------------- /Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /TestCollectionView.xcodeproj/Podfile: -------------------------------------------------------------------------------- 1 | pod 'Masonry', '~> 1.0.1' 2 | -------------------------------------------------------------------------------- /TestCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TestCollectionView/.Podfile.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/.Podfile.swp -------------------------------------------------------------------------------- /TestCollectionView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/AppDelegate.h -------------------------------------------------------------------------------- /TestCollectionView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/AppDelegate.m -------------------------------------------------------------------------------- /TestCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestCollectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TestCollectionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestCollectionView/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/Icon-60.png -------------------------------------------------------------------------------- /TestCollectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/Info.plist -------------------------------------------------------------------------------- /TestCollectionView/LastCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/LastCell.h -------------------------------------------------------------------------------- /TestCollectionView/LastCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/LastCell.m -------------------------------------------------------------------------------- /TestCollectionView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/ViewController.h -------------------------------------------------------------------------------- /TestCollectionView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/ViewController.m -------------------------------------------------------------------------------- /TestCollectionView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionView/main.m -------------------------------------------------------------------------------- /TestCollectionViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionViewTests/Info.plist -------------------------------------------------------------------------------- /TestCollectionViewTests/TestCollectionViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionViewTests/TestCollectionViewTests.m -------------------------------------------------------------------------------- /TestCollectionViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionViewUITests/Info.plist -------------------------------------------------------------------------------- /TestCollectionViewUITests/TestCollectionViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingbing0/TestLayout/HEAD/TestCollectionViewUITests/TestCollectionViewUITests.m --------------------------------------------------------------------------------