├── DemoMasonryPlus.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── adad184.xcuserdatad │ └── xcschemes │ ├── DemoMasonryPlus.xcscheme │ └── xcschememanagement.plist ├── DemoMasonryPlus.xcworkspace └── contents.xcworkspacedata ├── DemoMasonryPlus ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Base1Controller.h ├── Base1Controller.m ├── Base2Controller.h ├── Base2Controller.m ├── Base3Controller.h ├── Base3Controller.m ├── Base4Controller.h ├── Base4Controller.m ├── Base5Controller.h ├── Base5Controller.m ├── BaseController.h ├── BaseController.m ├── Info.plist ├── MMLabel.h ├── MMLabel.m ├── MMView.h ├── MMView.m ├── ViewController.h ├── ViewController.m └── main.m ├── Masonry.key ├── Podfile ├── Podfile.lock └── Pods ├── FDFullscreenPopGesture ├── FDFullscreenPopGesture │ ├── UINavigationController+FDFullscreenPopGesture.h │ └── UINavigationController+FDFullscreenPopGesture.m ├── LICENSE └── README.md ├── Headers ├── Private │ ├── FDFullscreenPopGesture │ │ └── UINavigationController+FDFullscreenPopGesture.h │ ├── MMPlaceHolder │ │ └── MMPlaceHolder.h │ ├── MMTweenAnimation │ │ ├── MMTweenAnimation.h │ │ └── MMTweenFunction.h │ ├── 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 │ └── pop │ │ ├── FloatConversion.h │ │ ├── POP.h │ │ ├── POPAction.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimation.h │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationEventInternal.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationInternal.h │ │ ├── POPAnimationPrivate.h │ │ ├── POPAnimationRuntime.h │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimationTracerInternal.h │ │ ├── POPAnimator.h │ │ ├── POPAnimatorPrivate.h │ │ ├── POPBasicAnimation.h │ │ ├── POPBasicAnimationInternal.h │ │ ├── POPCGUtils.h │ │ ├── POPCustomAnimation.h │ │ ├── POPDecayAnimation.h │ │ ├── POPDecayAnimationInternal.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPLayerExtras.h │ │ ├── POPMath.h │ │ ├── POPPropertyAnimation.h │ │ ├── POPPropertyAnimationInternal.h │ │ ├── POPSpringAnimation.h │ │ ├── POPSpringAnimationInternal.h │ │ ├── POPSpringSolver.h │ │ ├── POPVector.h │ │ ├── TransformationMatrix.h │ │ └── UnitBezier.h └── Public │ ├── FDFullscreenPopGesture │ └── UINavigationController+FDFullscreenPopGesture.h │ ├── MMPlaceHolder │ └── MMPlaceHolder.h │ ├── MMTweenAnimation │ ├── MMTweenAnimation.h │ └── MMTweenFunction.h │ ├── 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 │ └── pop │ ├── POP.h │ ├── POPAnimatableProperty.h │ ├── POPAnimation.h │ ├── POPAnimationEvent.h │ ├── POPAnimationExtras.h │ ├── POPAnimationTracer.h │ ├── POPAnimator.h │ ├── POPBasicAnimation.h │ ├── POPCustomAnimation.h │ ├── POPDecayAnimation.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPLayerExtras.h │ ├── POPPropertyAnimation.h │ └── POPSpringAnimation.h ├── MMPlaceHolder ├── LICENSE ├── MMPlaceHolder │ ├── MMPlaceHolder.h │ └── MMPlaceHolder.m └── README.md ├── MMTweenAnimation ├── Classes │ ├── MMTweenAnimation.h │ ├── MMTweenAnimation.m │ ├── MMTweenFunction.h │ └── MMTweenFunction.m ├── LICENSE └── README.md ├── 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 │ └── adad184.xcuserdatad │ └── xcschemes │ ├── FDFullscreenPopGesture.xcscheme │ ├── MMPlaceHolder.xcscheme │ ├── MMTweenAnimation.xcscheme │ ├── Masonry.xcscheme │ ├── Pods-DemoMasonryPlus.xcscheme │ ├── pop.xcscheme │ └── xcschememanagement.plist ├── Target Support Files ├── FDFullscreenPopGesture │ ├── FDFullscreenPopGesture-dummy.m │ ├── FDFullscreenPopGesture-prefix.pch │ └── FDFullscreenPopGesture.xcconfig ├── MMPlaceHolder │ ├── MMPlaceHolder-dummy.m │ ├── MMPlaceHolder-prefix.pch │ └── MMPlaceHolder.xcconfig ├── MMTweenAnimation │ ├── MMTweenAnimation-dummy.m │ ├── MMTweenAnimation-prefix.pch │ └── MMTweenAnimation.xcconfig ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig ├── Pods-DemoMasonryPlus │ ├── Pods-DemoMasonryPlus-acknowledgements.markdown │ ├── Pods-DemoMasonryPlus-acknowledgements.plist │ ├── Pods-DemoMasonryPlus-dummy.m │ ├── Pods-DemoMasonryPlus-frameworks.sh │ ├── Pods-DemoMasonryPlus-resources.sh │ ├── Pods-DemoMasonryPlus.debug.xcconfig │ └── Pods-DemoMasonryPlus.release.xcconfig └── pop │ ├── pop-dummy.m │ ├── pop-prefix.pch │ └── pop.xcconfig └── pop ├── LICENSE ├── README.md └── pop ├── POP.h ├── POPAction.h ├── POPAnimatableProperty.h ├── POPAnimatableProperty.mm ├── POPAnimation.h ├── POPAnimation.mm ├── POPAnimationEvent.h ├── POPAnimationEvent.mm ├── POPAnimationEventInternal.h ├── POPAnimationExtras.h ├── POPAnimationExtras.mm ├── POPAnimationInternal.h ├── POPAnimationPrivate.h ├── POPAnimationRuntime.h ├── POPAnimationRuntime.mm ├── POPAnimationTracer.h ├── POPAnimationTracer.mm ├── POPAnimationTracerInternal.h ├── POPAnimator.h ├── POPAnimator.mm ├── POPAnimatorPrivate.h ├── POPBasicAnimation.h ├── POPBasicAnimation.mm ├── POPBasicAnimationInternal.h ├── POPCGUtils.h ├── POPCGUtils.mm ├── POPCustomAnimation.h ├── POPCustomAnimation.mm ├── POPDecayAnimation.h ├── POPDecayAnimation.mm ├── POPDecayAnimationInternal.h ├── POPDefines.h ├── POPGeometry.h ├── POPGeometry.mm ├── POPLayerExtras.h ├── POPLayerExtras.mm ├── POPMath.h ├── POPMath.mm ├── POPPropertyAnimation.h ├── POPPropertyAnimation.mm ├── POPPropertyAnimationInternal.h ├── POPSpringAnimation.h ├── POPSpringAnimation.mm ├── POPSpringAnimationInternal.h ├── POPSpringSolver.h ├── POPVector.h ├── POPVector.mm └── WebCore ├── FloatConversion.h ├── TransformationMatrix.cpp ├── TransformationMatrix.h └── UnitBezier.h /DemoMasonryPlus.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DemoMasonryPlus.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoMasonryPlus.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/DemoMasonryPlus.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/DemoMasonryPlus.xcscheme -------------------------------------------------------------------------------- /DemoMasonryPlus.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DemoMasonryPlus.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoMasonryPlus/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/AppDelegate.h -------------------------------------------------------------------------------- /DemoMasonryPlus/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/AppDelegate.m -------------------------------------------------------------------------------- /DemoMasonryPlus/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DemoMasonryPlus/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DemoMasonryPlus/Base1Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base1Controller.h -------------------------------------------------------------------------------- /DemoMasonryPlus/Base1Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base1Controller.m -------------------------------------------------------------------------------- /DemoMasonryPlus/Base2Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base2Controller.h -------------------------------------------------------------------------------- /DemoMasonryPlus/Base2Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base2Controller.m -------------------------------------------------------------------------------- /DemoMasonryPlus/Base3Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base3Controller.h -------------------------------------------------------------------------------- /DemoMasonryPlus/Base3Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base3Controller.m -------------------------------------------------------------------------------- /DemoMasonryPlus/Base4Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base4Controller.h -------------------------------------------------------------------------------- /DemoMasonryPlus/Base4Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base4Controller.m -------------------------------------------------------------------------------- /DemoMasonryPlus/Base5Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base5Controller.h -------------------------------------------------------------------------------- /DemoMasonryPlus/Base5Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Base5Controller.m -------------------------------------------------------------------------------- /DemoMasonryPlus/BaseController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/BaseController.h -------------------------------------------------------------------------------- /DemoMasonryPlus/BaseController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/BaseController.m -------------------------------------------------------------------------------- /DemoMasonryPlus/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/Info.plist -------------------------------------------------------------------------------- /DemoMasonryPlus/MMLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/MMLabel.h -------------------------------------------------------------------------------- /DemoMasonryPlus/MMLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/MMLabel.m -------------------------------------------------------------------------------- /DemoMasonryPlus/MMView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/MMView.h -------------------------------------------------------------------------------- /DemoMasonryPlus/MMView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/MMView.m -------------------------------------------------------------------------------- /DemoMasonryPlus/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/ViewController.h -------------------------------------------------------------------------------- /DemoMasonryPlus/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/ViewController.m -------------------------------------------------------------------------------- /DemoMasonryPlus/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/DemoMasonryPlus/main.m -------------------------------------------------------------------------------- /Masonry.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Masonry.key -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h -------------------------------------------------------------------------------- /Pods/FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.m -------------------------------------------------------------------------------- /Pods/FDFullscreenPopGesture/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/FDFullscreenPopGesture/LICENSE -------------------------------------------------------------------------------- /Pods/FDFullscreenPopGesture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/FDFullscreenPopGesture/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h: -------------------------------------------------------------------------------- 1 | ../../../FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MMPlaceHolder/MMPlaceHolder.h: -------------------------------------------------------------------------------- 1 | ../../../MMPlaceHolder/MMPlaceHolder/MMPlaceHolder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MMTweenAnimation/MMTweenAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../MMTweenAnimation/Classes/MMTweenAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MMTweenAnimation/MMTweenFunction.h: -------------------------------------------------------------------------------- 1 | ../../../MMTweenAnimation/Classes/MMTweenFunction.h -------------------------------------------------------------------------------- /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/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h: -------------------------------------------------------------------------------- 1 | ../../../FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MMPlaceHolder/MMPlaceHolder.h: -------------------------------------------------------------------------------- 1 | ../../../MMPlaceHolder/MMPlaceHolder/MMPlaceHolder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MMTweenAnimation/MMTweenAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../MMTweenAnimation/Classes/MMTweenAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MMTweenAnimation/MMTweenFunction.h: -------------------------------------------------------------------------------- 1 | ../../../MMTweenAnimation/Classes/MMTweenFunction.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/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/MMPlaceHolder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMPlaceHolder/LICENSE -------------------------------------------------------------------------------- /Pods/MMPlaceHolder/MMPlaceHolder/MMPlaceHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMPlaceHolder/MMPlaceHolder/MMPlaceHolder.h -------------------------------------------------------------------------------- /Pods/MMPlaceHolder/MMPlaceHolder/MMPlaceHolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMPlaceHolder/MMPlaceHolder/MMPlaceHolder.m -------------------------------------------------------------------------------- /Pods/MMPlaceHolder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMPlaceHolder/README.md -------------------------------------------------------------------------------- /Pods/MMTweenAnimation/Classes/MMTweenAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMTweenAnimation/Classes/MMTweenAnimation.h -------------------------------------------------------------------------------- /Pods/MMTweenAnimation/Classes/MMTweenAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMTweenAnimation/Classes/MMTweenAnimation.m -------------------------------------------------------------------------------- /Pods/MMTweenAnimation/Classes/MMTweenFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMTweenAnimation/Classes/MMTweenFunction.h -------------------------------------------------------------------------------- /Pods/MMTweenAnimation/Classes/MMTweenFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMTweenAnimation/Classes/MMTweenFunction.m -------------------------------------------------------------------------------- /Pods/MMTweenAnimation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMTweenAnimation/LICENSE -------------------------------------------------------------------------------- /Pods/MMTweenAnimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/MMTweenAnimation/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/FDFullscreenPopGesture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/FDFullscreenPopGesture.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/MMPlaceHolder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/MMPlaceHolder.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/MMTweenAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/MMTweenAnimation.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/Pods-DemoMasonryPlus.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/Pods-DemoMasonryPlus.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/pop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/pop.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Pods.xcodeproj/xcuserdata/adad184.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/MMPlaceHolder/MMPlaceHolder-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/MMPlaceHolder/MMPlaceHolder-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MMPlaceHolder/MMPlaceHolder-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/MMPlaceHolder/MMPlaceHolder-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MMPlaceHolder/MMPlaceHolder.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/MMPlaceHolder/MMPlaceHolder.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/MMTweenAnimation/MMTweenAnimation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/MMTweenAnimation/MMTweenAnimation-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MMTweenAnimation/MMTweenAnimation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/MMTweenAnimation/MMTweenAnimation-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MMTweenAnimation/MMTweenAnimation.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/MMTweenAnimation/MMTweenAnimation.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/Pods-DemoMasonryPlus/Pods-DemoMasonryPlus.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/pop/pop-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/pop/pop-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/Target Support Files/pop/pop.xcconfig -------------------------------------------------------------------------------- /Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/README.md -------------------------------------------------------------------------------- /Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adad184/DemoMasonryPlus/HEAD/Pods/pop/pop/WebCore/UnitBezier.h --------------------------------------------------------------------------------