├── .gitattributes ├── .gitignore ├── EGFloatingTextField.gif ├── EGFloatingTextField.podspec ├── EGFloatingTextField ├── EGFloatingTextField.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── EGFloatingTextField.xcscheme ├── EGFloatingTextField.xcworkspace │ └── contents.xcworkspacedata ├── EGFloatingTextField │ ├── .DS_Store │ ├── EGFloatingTextField.h │ ├── EGFloatingTextField.swift │ └── Info.plist ├── EGFloatingTextFieldTests │ ├── EGFloatingTextFieldTests.swift │ └── Info.plist ├── Example │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── ExampleTests │ ├── ExampleTests.swift │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ └── Private │ │ └── PureLayout │ │ ├── ALView+PureLayout.h │ │ ├── NSArray+PureLayout.h │ │ ├── NSLayoutConstraint+PureLayout.h │ │ ├── PureLayout+Internal.h │ │ ├── PureLayout.h │ │ └── PureLayoutDefines.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── PureLayout │ ├── LICENSE │ ├── PureLayout │ │ └── PureLayout │ │ │ ├── ALView+PureLayout.h │ │ │ ├── ALView+PureLayout.m │ │ │ ├── NSArray+PureLayout.h │ │ │ ├── NSArray+PureLayout.m │ │ │ ├── NSLayoutConstraint+PureLayout.h │ │ │ ├── NSLayoutConstraint+PureLayout.m │ │ │ ├── PureLayout+Internal.h │ │ │ ├── PureLayout.h │ │ │ └── PureLayoutDefines.h │ └── README.md │ └── Target Support Files │ ├── Pods-EGFloatingTextField │ ├── Info.plist │ ├── Pods-EGFloatingTextField-acknowledgements.markdown │ ├── Pods-EGFloatingTextField-acknowledgements.plist │ ├── Pods-EGFloatingTextField-dummy.m │ ├── Pods-EGFloatingTextField-frameworks.sh │ ├── Pods-EGFloatingTextField-resources.sh │ ├── Pods-EGFloatingTextField-umbrella.h │ ├── Pods-EGFloatingTextField.debug.xcconfig │ ├── Pods-EGFloatingTextField.modulemap │ └── Pods-EGFloatingTextField.release.xcconfig │ └── PureLayout │ ├── Info.plist │ ├── PureLayout-Private.xcconfig │ ├── PureLayout-dummy.m │ ├── PureLayout-prefix.pch │ ├── PureLayout-umbrella.h │ ├── PureLayout.modulemap │ └── PureLayout.xcconfig ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | EGFloatingTextField/Pods/PureLayout/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/.gitignore -------------------------------------------------------------------------------- /EGFloatingTextField.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField.gif -------------------------------------------------------------------------------- /EGFloatingTextField.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField.podspec -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextField.xcodeproj/xcshareddata/xcschemes/EGFloatingTextField.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextField.xcodeproj/xcshareddata/xcschemes/EGFloatingTextField.xcscheme -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextField.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextField.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextField/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextField/.DS_Store -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextField/EGFloatingTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextField/EGFloatingTextField.h -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextField/EGFloatingTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextField/EGFloatingTextField.swift -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextField/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextField/Info.plist -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextFieldTests/EGFloatingTextFieldTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextFieldTests/EGFloatingTextFieldTests.swift -------------------------------------------------------------------------------- /EGFloatingTextField/EGFloatingTextFieldTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/EGFloatingTextFieldTests/Info.plist -------------------------------------------------------------------------------- /EGFloatingTextField/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Example/AppDelegate.swift -------------------------------------------------------------------------------- /EGFloatingTextField/Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /EGFloatingTextField/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /EGFloatingTextField/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /EGFloatingTextField/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Example/Info.plist -------------------------------------------------------------------------------- /EGFloatingTextField/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Example/ViewController.swift -------------------------------------------------------------------------------- /EGFloatingTextField/ExampleTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/ExampleTests/ExampleTests.swift -------------------------------------------------------------------------------- /EGFloatingTextField/ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/ExampleTests/Info.plist -------------------------------------------------------------------------------- /EGFloatingTextField/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Podfile -------------------------------------------------------------------------------- /EGFloatingTextField/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Podfile.lock -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Headers/Private/PureLayout/ALView+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/ALView+PureLayout.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Headers/Private/PureLayout/NSArray+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Headers/Private/PureLayout/NSLayoutConstraint+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Headers/Private/PureLayout/PureLayout+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout+Internal.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Headers/Private/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Headers/Private/PureLayout/PureLayoutDefines.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayoutDefines.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Manifest.lock -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/LICENSE -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/ALView+PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/ALView+PureLayout.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/ALView+PureLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/ALView+PureLayout.m -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/NSArray+PureLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/NSArray+PureLayout.m -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.m -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/PureLayout+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/PureLayout+Internal.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/PureLayoutDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/PureLayout/PureLayout/PureLayoutDefines.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/PureLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/PureLayout/README.md -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Info.plist -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-acknowledgements.markdown -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-acknowledgements.plist -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-dummy.m -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-frameworks.sh -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-resources.sh -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField-umbrella.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField.debug.xcconfig -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField.modulemap -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/Pods-EGFloatingTextField/Pods-EGFloatingTextField.release.xcconfig -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/PureLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/PureLayout/Info.plist -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout-Private.xcconfig -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout-dummy.m -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout-prefix.pch -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout-umbrella.h -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout.modulemap -------------------------------------------------------------------------------- /EGFloatingTextField/Pods/Target Support Files/PureLayout/PureLayout.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgayretli/EGFloatingTextField/HEAD/README.md --------------------------------------------------------------------------------