├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── BuildHeaders │ └── 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 ├── Headers │ └── 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 ├── Manifest.lock ├── Pods-TQTableViewCellRemoveController-acknowledgements.markdown ├── Pods-TQTableViewCellRemoveController-acknowledgements.plist ├── Pods-TQTableViewCellRemoveController-dummy.m ├── Pods-TQTableViewCellRemoveController-environment.h ├── Pods-TQTableViewCellRemoveController-pop-Private.xcconfig ├── Pods-TQTableViewCellRemoveController-pop-dummy.m ├── Pods-TQTableViewCellRemoveController-pop-prefix.pch ├── Pods-TQTableViewCellRemoveController-pop.xcconfig ├── Pods-TQTableViewCellRemoveController-resources.sh ├── Pods-TQTableViewCellRemoveController.xcconfig ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── qfu.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-TQTableViewCellRemoveController-pop.xcscheme │ │ ├── Pods-TQTableViewCellRemoveController.xcscheme │ │ └── xcschememanagement.plist └── 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 ├── README.md ├── READMEIMAGE └── 1.gif ├── TQCellRemove.podspec ├── TQRemoveController ├── TQTableViewCellRemoveController.h └── TQTableViewCellRemoveController.m ├── TQTableViewCellRemoveController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── TQTableViewCellRemoveController.xccheckout │ └── xcuserdata │ │ └── qfu.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── qfu.xcuserdatad │ └── xcschemes │ ├── TQTableViewCellRemoveController.xcscheme │ └── xcschememanagement.plist ├── TQTableViewCellRemoveController.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── TQTableViewCellRemoveController.xccheckout ├── TQTableViewCellRemoveController ├── Base.lproj │ └── Main.storyboard ├── Image │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ └── 5.jpg ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── TQAppDelegate.h ├── TQAppDelegate.m ├── TQCell.h ├── TQCell.m ├── TQCell.xib ├── TQTableViewCellRemoveController-Info.plist ├── TQTableViewCellRemoveController-Prefix.pch ├── TQViewController.h ├── TQViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m └── TQTableViewCellRemoveControllerTests ├── TQTableViewCellRemoveControllerTests-Info.plist ├── TQTableViewCellRemoveControllerTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-dummy.m -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-environment.h -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-pop-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-pop-dummy.m -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-pop-prefix.pch -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-pop.xcconfig -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController-resources.sh -------------------------------------------------------------------------------- /Pods/Pods-TQTableViewCellRemoveController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods-TQTableViewCellRemoveController.xcconfig -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/Pods-TQTableViewCellRemoveController-pop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/Pods-TQTableViewCellRemoveController-pop.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/Pods-TQTableViewCellRemoveController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/Pods-TQTableViewCellRemoveController.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/Pods.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/README.md -------------------------------------------------------------------------------- /Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/README.md -------------------------------------------------------------------------------- /READMEIMAGE/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/READMEIMAGE/1.gif -------------------------------------------------------------------------------- /TQCellRemove.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQCellRemove.podspec -------------------------------------------------------------------------------- /TQRemoveController/TQTableViewCellRemoveController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQRemoveController/TQTableViewCellRemoveController.h -------------------------------------------------------------------------------- /TQRemoveController/TQTableViewCellRemoveController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQRemoveController/TQTableViewCellRemoveController.m -------------------------------------------------------------------------------- /TQTableViewCellRemoveController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TQTableViewCellRemoveController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TQTableViewCellRemoveController.xcodeproj/project.xcworkspace/xcshareddata/TQTableViewCellRemoveController.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController.xcodeproj/project.xcworkspace/xcshareddata/TQTableViewCellRemoveController.xccheckout -------------------------------------------------------------------------------- /TQTableViewCellRemoveController.xcodeproj/project.xcworkspace/xcuserdata/qfu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController.xcodeproj/project.xcworkspace/xcuserdata/qfu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TQTableViewCellRemoveController.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/TQTableViewCellRemoveController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/TQTableViewCellRemoveController.xcscheme -------------------------------------------------------------------------------- /TQTableViewCellRemoveController.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController.xcodeproj/xcuserdata/qfu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TQTableViewCellRemoveController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TQTableViewCellRemoveController.xcworkspace/xcshareddata/TQTableViewCellRemoveController.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController.xcworkspace/xcshareddata/TQTableViewCellRemoveController.xccheckout -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Image/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Image/0.jpg -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Image/1.jpg -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Image/2.jpg -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Image/3.jpg -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Image/4.jpg -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Image/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Image/5.jpg -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQAppDelegate.h -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQAppDelegate.m -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQCell.h -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQCell.m -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQCell.xib -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQTableViewCellRemoveController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQTableViewCellRemoveController-Info.plist -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQTableViewCellRemoveController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQTableViewCellRemoveController-Prefix.pch -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQViewController.h -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/TQViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/TQViewController.m -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TQTableViewCellRemoveController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveController/main.m -------------------------------------------------------------------------------- /TQTableViewCellRemoveControllerTests/TQTableViewCellRemoveControllerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveControllerTests/TQTableViewCellRemoveControllerTests-Info.plist -------------------------------------------------------------------------------- /TQTableViewCellRemoveControllerTests/TQTableViewCellRemoveControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinyQ/TQTableViewCellRemoveController/HEAD/TQTableViewCellRemoveControllerTests/TQTableViewCellRemoveControllerTests.m -------------------------------------------------------------------------------- /TQTableViewCellRemoveControllerTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------