├── .gitignore ├── LICENSE ├── README.md ├── UIFloatLabelTextView.podspec ├── UIFloatLabelTextView ├── UIFloatLabelTextView.h └── UIFloatLabelTextView.m └── UIFloatLabelTextViewExample ├── UIFloatLabelTextView ├── Info.plist └── UIFloatLabelTextView.h ├── UIFloatLabelTextViewExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── UIFloatLabelSampleApp.xccheckout │ └── xcuserdata │ │ ├── arthur.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ │ └── sabintseva.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── UIFloatLabelTextView.xcscheme │ │ └── UIFloatLabelTextViewExample.xcscheme └── xcuserdata │ ├── arthur.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── sabintseva.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── UIFloatLabelTextViewExample ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets ├── AppIcon.appiconset │ └── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── Launch Screen.storyboard ├── UIFloatLabelTextViewExample-Info.plist ├── UIFloatLabelTextViewExample-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj └── InfoPlist.strings └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/README.md -------------------------------------------------------------------------------- /UIFloatLabelTextView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextView.podspec -------------------------------------------------------------------------------- /UIFloatLabelTextView/UIFloatLabelTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextView/UIFloatLabelTextView.h -------------------------------------------------------------------------------- /UIFloatLabelTextView/UIFloatLabelTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextView/UIFloatLabelTextView.m -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextView/Info.plist -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextView/UIFloatLabelTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextView/UIFloatLabelTextView.h -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/xcshareddata/UIFloatLabelSampleApp.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/xcshareddata/UIFloatLabelSampleApp.xccheckout -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/xcuserdata/arthur.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/xcuserdata/arthur.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/xcuserdata/arthur.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/xcuserdata/arthur.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/xcuserdata/sabintseva.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/project.xcworkspace/xcuserdata/sabintseva.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcshareddata/xcschemes/UIFloatLabelTextView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcshareddata/xcschemes/UIFloatLabelTextView.xcscheme -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcshareddata/xcschemes/UIFloatLabelTextViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcshareddata/xcschemes/UIFloatLabelTextViewExample.xcscheme -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcuserdata/arthur.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcuserdata/arthur.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcuserdata/arthur.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcuserdata/arthur.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcuserdata/sabintseva.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample.xcodeproj/xcuserdata/sabintseva.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/AppDelegate.h -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/AppDelegate.m -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/Launch Screen.storyboard -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample-Info.plist -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample-Prefix.pch -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/ViewController.h -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/ViewController.m -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/UIFloatLabelTextView/HEAD/UIFloatLabelTextViewExample/UIFloatLabelTextViewExample/main.m --------------------------------------------------------------------------------