├── .gitignore ├── Demo ├── GCPlaceholderTextViewDemo.xcodeproj │ └── project.pbxproj └── GCPlaceholderTextViewDemo │ ├── GCPlaceholderTextViewDemo-Info.plist │ ├── GCPlaceholderTextViewDemo-Prefix.pch │ ├── GCPlaceholderTextViewDemoAppDelegate.h │ ├── GCPlaceholderTextViewDemoAppDelegate.m │ ├── GCPlaceholderTextViewDemoViewController.h │ ├── GCPlaceholderTextViewDemoViewController.m │ ├── en.lproj │ ├── GCPlaceholderTextViewDemoViewController.xib │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── GCPlaceholderTextView ├── GCPlaceholderTextView.h └── GCPlaceholderTextView.m ├── LICENSE.txt └── README.textile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemo-Info.plist -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemoAppDelegate.h -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemoAppDelegate.m -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemoViewController.h -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/GCPlaceholderTextViewDemoViewController.m -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/en.lproj/GCPlaceholderTextViewDemoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/en.lproj/GCPlaceholderTextViewDemoViewController.xib -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /Demo/GCPlaceholderTextViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/Demo/GCPlaceholderTextViewDemo/main.m -------------------------------------------------------------------------------- /GCPlaceholderTextView/GCPlaceholderTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/GCPlaceholderTextView/GCPlaceholderTextView.h -------------------------------------------------------------------------------- /GCPlaceholderTextView/GCPlaceholderTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/GCPlaceholderTextView/GCPlaceholderTextView.m -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCPlaceholderTextView/HEAD/README.textile --------------------------------------------------------------------------------