FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
UIAPlaceholderTextView.h
Go to the documentation of this file.
1 //
2 // UIAPlaceholderTextView.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 13. 4. 12..
6 // Copyright (c) 2013 youknowone.org. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
14 @interface UIAPlaceholderTextView : UITextView {
15  UITextView *_placeholderTextView;
16  NSString *_placeholderString;
18  BOOL _editing;
19 }
20 
24 @property(nonatomic, copy) NSString *placeholderString;
25 
29 @property(nonatomic, strong) UIColor *placeholderColor __deprecated;
30 
34 @property(weak, nonatomic, readonly) UITextView *placeholderTextView;
35 
39 @property(nonatomic, assign, getter=isPlaceholderAnimated) BOOL placeholderAnimated;
40 
41 @end
UITextView with placeholder.
Definition: UIAPlaceholderTextView.h:14
BOOL _placeholderAnimated
Definition: UIAPlaceholderTextView.h:17
BOOL _editing
Definition: UIAPlaceholderTextView.h:18
NSString * _placeholderString
Definition: UIAPlaceholderTextView.h:16
UITextView * _placeholderTextView
Definition: UIAPlaceholderTextView.h:15