├── CellNestCollectionViewDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── Qiang.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── CellNestCollectionViewDemo.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── Qiang.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── CellNestCollectionViewDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DemoCollectionViewCell.h ├── DemoCollectionViewCell.m ├── DemoDataKey.h ├── DemoTableViewCell.h ├── DemoTableViewCell.m ├── DemoTableViewController.h ├── DemoTableViewController.m ├── Info.plist ├── avatar.jpg └── main.m ├── CellNestCollectionViewDemoTests ├── CellNestCollectionViewDemoTests.m └── Info.plist ├── CellNestCollectionViewDemoUITests ├── CellNestCollectionViewDemoUITests.m └── 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 │ └── xcuserdata │ │ └── Qiang.xcuserdatad │ │ └── xcschemes │ │ ├── Masonry.xcscheme │ │ ├── Pods-CellNestCollectionViewDemo.xcscheme │ │ ├── Pods-CellNestCollectionViewDemoTests.xcscheme │ │ ├── Pods-CellNestCollectionViewDemoUITests.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── Pods-CellNestCollectionViewDemo │ ├── Pods-CellNestCollectionViewDemo-acknowledgements.markdown │ ├── Pods-CellNestCollectionViewDemo-acknowledgements.plist │ ├── Pods-CellNestCollectionViewDemo-dummy.m │ ├── Pods-CellNestCollectionViewDemo-frameworks.sh │ ├── Pods-CellNestCollectionViewDemo-resources.sh │ ├── Pods-CellNestCollectionViewDemo.debug.xcconfig │ └── Pods-CellNestCollectionViewDemo.release.xcconfig │ ├── Pods-CellNestCollectionViewDemoTests │ ├── Pods-CellNestCollectionViewDemoTests-acknowledgements.markdown │ ├── Pods-CellNestCollectionViewDemoTests-acknowledgements.plist │ ├── Pods-CellNestCollectionViewDemoTests-dummy.m │ ├── Pods-CellNestCollectionViewDemoTests-frameworks.sh │ ├── Pods-CellNestCollectionViewDemoTests-resources.sh │ ├── Pods-CellNestCollectionViewDemoTests.debug.xcconfig │ └── Pods-CellNestCollectionViewDemoTests.release.xcconfig │ └── Pods-CellNestCollectionViewDemoUITests │ ├── Pods-CellNestCollectionViewDemoUITests-acknowledgements.markdown │ ├── Pods-CellNestCollectionViewDemoUITests-acknowledgements.plist │ ├── Pods-CellNestCollectionViewDemoUITests-dummy.m │ ├── Pods-CellNestCollectionViewDemoUITests-frameworks.sh │ ├── Pods-CellNestCollectionViewDemoUITests-resources.sh │ ├── Pods-CellNestCollectionViewDemoUITests.debug.xcconfig │ └── Pods-CellNestCollectionViewDemoUITests.release.xcconfig └── README.md /CellNestCollectionViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CellNestCollectionViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CellNestCollectionViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CellNestCollectionViewDemo.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CellNestCollectionViewDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CellNestCollectionViewDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CellNestCollectionViewDemo.xcworkspace/xcuserdata/Qiang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo.xcworkspace/xcuserdata/Qiang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/DemoCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/DemoCollectionViewCell.h -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/DemoCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/DemoCollectionViewCell.m -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/DemoDataKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/DemoDataKey.h -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/DemoTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/DemoTableViewCell.h -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/DemoTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/DemoTableViewCell.m -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/DemoTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/DemoTableViewController.h -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/DemoTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/DemoTableViewController.m -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/Info.plist -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/avatar.jpg -------------------------------------------------------------------------------- /CellNestCollectionViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemo/main.m -------------------------------------------------------------------------------- /CellNestCollectionViewDemoTests/CellNestCollectionViewDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemoTests/CellNestCollectionViewDemoTests.m -------------------------------------------------------------------------------- /CellNestCollectionViewDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemoTests/Info.plist -------------------------------------------------------------------------------- /CellNestCollectionViewDemoUITests/CellNestCollectionViewDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemoUITests/CellNestCollectionViewDemoUITests.m -------------------------------------------------------------------------------- /CellNestCollectionViewDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/CellNestCollectionViewDemoUITests/Info.plist -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/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/icofans/CellNestCollectionViewDemo/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/Pods-CellNestCollectionViewDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/Pods-CellNestCollectionViewDemo.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/Pods-CellNestCollectionViewDemoTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/Pods-CellNestCollectionViewDemoTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/Pods-CellNestCollectionViewDemoUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/Pods-CellNestCollectionViewDemoUITests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/Qiang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemo/Pods-CellNestCollectionViewDemo.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoTests/Pods-CellNestCollectionViewDemoTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/Pods/Target Support Files/Pods-CellNestCollectionViewDemoUITests/Pods-CellNestCollectionViewDemoUITests.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icofans/CellNestCollectionViewDemo/HEAD/README.md --------------------------------------------------------------------------------