├── .gitignore ├── B68UIFloatLabelTextField.podspec ├── B68UIFloatLabelTextField └── B68UIFloatLabelTextField.swift ├── Example ├── UIFloatLabelTextInput.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── UIFloatLabelTextInput │ ├── AppDelegate.swift │ ├── Base.lproj │ └── Main.storyboard │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md └── xcode_screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/.gitignore -------------------------------------------------------------------------------- /B68UIFloatLabelTextField.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/B68UIFloatLabelTextField.podspec -------------------------------------------------------------------------------- /B68UIFloatLabelTextField/B68UIFloatLabelTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/B68UIFloatLabelTextField/B68UIFloatLabelTextField.swift -------------------------------------------------------------------------------- /Example/UIFloatLabelTextInput.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/Example/UIFloatLabelTextInput.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/UIFloatLabelTextInput.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/Example/UIFloatLabelTextInput.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UIFloatLabelTextInput/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/Example/UIFloatLabelTextInput/AppDelegate.swift -------------------------------------------------------------------------------- /Example/UIFloatLabelTextInput/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/Example/UIFloatLabelTextInput/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/UIFloatLabelTextInput/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/Example/UIFloatLabelTextInput/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/UIFloatLabelTextInput/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/Example/UIFloatLabelTextInput/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/UIFloatLabelTextInput/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/Example/UIFloatLabelTextInput/Info.plist -------------------------------------------------------------------------------- /Example/UIFloatLabelTextInput/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/Example/UIFloatLabelTextInput/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/README.md -------------------------------------------------------------------------------- /xcode_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkfabisch/B68FloatingLabelTextField/HEAD/xcode_screenshot.png --------------------------------------------------------------------------------