├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── RSKPlaceholderTextView.podspec ├── RSKPlaceholderTextView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── RSKPlaceholderTextView.xcscheme ├── RSKPlaceholderTextView.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── RSKPlaceholderTextView ├── Info.plist ├── RSKPlaceholderTextView.h └── RSKPlaceholderTextView.swift └── RSKPlaceholderTextViewExample ├── RSKPlaceholderTextViewExample.gif ├── RSKPlaceholderTextViewExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── RSKPlaceholderTextViewExample.xcscheme ├── RSKPlaceholderTextViewExample ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift └── RSKPlaceholderTextViewExampleUITests ├── Info.plist └── RSKPlaceholderTextViewExampleUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/README.md -------------------------------------------------------------------------------- /RSKPlaceholderTextView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView.podspec -------------------------------------------------------------------------------- /RSKPlaceholderTextView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSKPlaceholderTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSKPlaceholderTextView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RSKPlaceholderTextView.xcodeproj/xcshareddata/xcschemes/RSKPlaceholderTextView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView.xcodeproj/xcshareddata/xcschemes/RSKPlaceholderTextView.xcscheme -------------------------------------------------------------------------------- /RSKPlaceholderTextView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSKPlaceholderTextView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RSKPlaceholderTextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView/Info.plist -------------------------------------------------------------------------------- /RSKPlaceholderTextView/RSKPlaceholderTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView/RSKPlaceholderTextView.h -------------------------------------------------------------------------------- /RSKPlaceholderTextView/RSKPlaceholderTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextView/RSKPlaceholderTextView.swift -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.gif -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.xcodeproj/xcshareddata/xcschemes/RSKPlaceholderTextViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample.xcodeproj/xcshareddata/xcschemes/RSKPlaceholderTextViewExample.xcscheme -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/Info.plist -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExample/ViewController.swift -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExampleUITests/Info.plist -------------------------------------------------------------------------------- /RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExampleUITests/RSKPlaceholderTextViewExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruslanskorb/RSKPlaceholderTextView/HEAD/RSKPlaceholderTextViewExample/RSKPlaceholderTextViewExampleUITests/RSKPlaceholderTextViewExampleUITests.swift --------------------------------------------------------------------------------