├── .gitignore ├── Example ├── .DS_Store ├── JOTextField.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── JOTextField-Example.xcscheme ├── JOTextField.xcworkspace │ └── contents.xcworkspacedata ├── JOTextField │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── JOAppDelegate.h │ ├── JOAppDelegate.m │ ├── JOTextField-Info.plist │ ├── JOTextField-Prefix.pch │ ├── JOTextField.h │ ├── JOTextField.m │ ├── JOViewController.h │ ├── JOViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCase.m │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── FBSnapshotTestController.m │ │ │ ├── UIImage+Compare.h │ │ │ ├── UIImage+Compare.m │ │ │ ├── UIImage+Diff.h │ │ │ └── UIImage+Diff.m │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ ├── FBSnapshotTestCase │ │ │ │ ├── FBSnapshotTestCase.h │ │ │ │ ├── FBSnapshotTestController.h │ │ │ │ ├── UIImage+Compare.h │ │ │ │ └── UIImage+Diff.h │ │ │ ├── JOTextField │ │ │ │ ├── JOTextField.h │ │ │ │ └── Vars.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 │ │ │ ├── FBSnapshotTestCase │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── UIImage+Compare.h │ │ │ └── UIImage+Diff.h │ │ │ ├── JOTextField │ │ │ ├── JOTextField.h │ │ │ └── Vars.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 │ ├── Local Podspecs │ │ └── JOTextField.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── Target Support Files │ │ ├── Pods-JOTextField-JOTextField │ │ │ ├── Pods-JOTextField-JOTextField-Private.xcconfig │ │ │ ├── Pods-JOTextField-JOTextField-dummy.m │ │ │ ├── Pods-JOTextField-JOTextField-prefix.pch │ │ │ └── Pods-JOTextField-JOTextField.xcconfig │ │ ├── Pods-JOTextField-pop │ │ │ ├── Pods-JOTextField-pop-Private.xcconfig │ │ │ ├── Pods-JOTextField-pop-dummy.m │ │ │ ├── Pods-JOTextField-pop-prefix.pch │ │ │ └── Pods-JOTextField-pop.xcconfig │ │ ├── Pods-JOTextField │ │ │ ├── Pods-JOTextField-acknowledgements.markdown │ │ │ ├── Pods-JOTextField-acknowledgements.plist │ │ │ ├── Pods-JOTextField-dummy.m │ │ │ ├── Pods-JOTextField-environment.h │ │ │ ├── Pods-JOTextField-resources.sh │ │ │ ├── Pods-JOTextField.debug.xcconfig │ │ │ └── Pods-JOTextField.release.xcconfig │ │ ├── Pods-Tests-FBSnapshotTestCase │ │ │ ├── Pods-Tests-FBSnapshotTestCase-Private.xcconfig │ │ │ ├── Pods-Tests-FBSnapshotTestCase-dummy.m │ │ │ ├── Pods-Tests-FBSnapshotTestCase-prefix.pch │ │ │ └── Pods-Tests-FBSnapshotTestCase.xcconfig │ │ ├── Pods-Tests-JOTextField │ │ │ ├── Pods-Tests-JOTextField-Private.xcconfig │ │ │ ├── Pods-Tests-JOTextField-dummy.m │ │ │ ├── Pods-Tests-JOTextField-prefix.pch │ │ │ └── Pods-Tests-JOTextField.xcconfig │ │ ├── Pods-Tests-pop │ │ │ ├── Pods-Tests-pop-Private.xcconfig │ │ │ ├── Pods-Tests-pop-dummy.m │ │ │ ├── Pods-Tests-pop-prefix.pch │ │ │ └── Pods-Tests-pop.xcconfig │ │ └── Pods-Tests │ │ │ ├── Pods-Tests-acknowledgements.markdown │ │ │ ├── Pods-Tests-acknowledgements.plist │ │ │ ├── Pods-Tests-dummy.m │ │ │ ├── Pods-Tests-environment.h │ │ │ ├── Pods-Tests-resources.sh │ │ │ ├── Pods-Tests.debug.xcconfig │ │ │ └── Pods-Tests.release.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 └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── JOTextField.h ├── JOTextField.m ├── JOTextField.podspec ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── JOTextField.h │ ├── JOTextField.m │ ├── Vars.h │ └── Vars.m ├── README.md ├── Vars.h └── Vars.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/JOTextField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JOTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JOTextField.xcodeproj/xcshareddata/xcschemes/JOTextField-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField.xcodeproj/xcshareddata/xcschemes/JOTextField-Example.xcscheme -------------------------------------------------------------------------------- /Example/JOTextField.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JOTextField/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/JOTextField/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/JOTextField/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JOTextField/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/JOTextField/JOAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/JOAppDelegate.h -------------------------------------------------------------------------------- /Example/JOTextField/JOAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/JOAppDelegate.m -------------------------------------------------------------------------------- /Example/JOTextField/JOTextField-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/JOTextField-Info.plist -------------------------------------------------------------------------------- /Example/JOTextField/JOTextField-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/JOTextField-Prefix.pch -------------------------------------------------------------------------------- /Example/JOTextField/JOTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/JOTextField.h -------------------------------------------------------------------------------- /Example/JOTextField/JOTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/JOTextField.m -------------------------------------------------------------------------------- /Example/JOTextField/JOViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/JOViewController.h -------------------------------------------------------------------------------- /Example/JOTextField/JOViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/JOViewController.m -------------------------------------------------------------------------------- /Example/JOTextField/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/JOTextField/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/JOTextField/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/LICENSE -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/FBSnapshotTestCase/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/JOTextField/JOTextField.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JOTextField.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/JOTextField/Vars.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Vars.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JOTextField/JOTextField.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JOTextField.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JOTextField/Vars.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Vars.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JOTextField.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Local Podspecs/JOTextField.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField-JOTextField/Pods-JOTextField-JOTextField-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField-JOTextField/Pods-JOTextField-JOTextField-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField-JOTextField/Pods-JOTextField-JOTextField-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField-JOTextField/Pods-JOTextField-JOTextField-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField-JOTextField/Pods-JOTextField-JOTextField-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField-JOTextField/Pods-JOTextField-JOTextField-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField-JOTextField/Pods-JOTextField-JOTextField.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField-JOTextField/Pods-JOTextField-JOTextField.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField-pop/Pods-JOTextField-pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField-pop/Pods-JOTextField-pop-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField-pop/Pods-JOTextField-pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField-pop/Pods-JOTextField-pop-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField-pop/Pods-JOTextField-pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField-pop/Pods-JOTextField-pop-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField-pop/Pods-JOTextField-pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField-pop/Pods-JOTextField-pop.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-JOTextField/Pods-JOTextField.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JOTextField/Pods-Tests-JOTextField-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-JOTextField/Pods-Tests-JOTextField-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JOTextField/Pods-Tests-JOTextField-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-JOTextField/Pods-Tests-JOTextField-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JOTextField/Pods-Tests-JOTextField-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-JOTextField/Pods-Tests-JOTextField-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JOTextField/Pods-Tests-JOTextField.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_JOTEXTFIELD_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-pop/Pods-Tests-pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-pop/Pods-Tests-pop-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-pop/Pods-Tests-pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-pop/Pods-Tests-pop-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-pop/Pods-Tests-pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-pop/Pods-Tests-pop-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-pop/Pods-Tests-pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests-pop/Pods-Tests-pop.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Example/Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/README.md -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Example/Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JOTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/JOTextField.h -------------------------------------------------------------------------------- /JOTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/JOTextField.m -------------------------------------------------------------------------------- /JOTextField.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/JOTextField.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/JOTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Pod/Classes/JOTextField.h -------------------------------------------------------------------------------- /Pod/Classes/JOTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Pod/Classes/JOTextField.m -------------------------------------------------------------------------------- /Pod/Classes/Vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Pod/Classes/Vars.h -------------------------------------------------------------------------------- /Pod/Classes/Vars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Pod/Classes/Vars.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/README.md -------------------------------------------------------------------------------- /Vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Vars.h -------------------------------------------------------------------------------- /Vars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lojals/JOTextField/HEAD/Vars.m --------------------------------------------------------------------------------