UITextView+Placeholder.h 379 B

1234567891011121314
  1. #import <UIKit/UIKit.h>
  2. @interface UITextView (Placeholder)
  3. @property (nonatomic, readonly) UILabel *placeholderLabel;
  4. @property (nonatomic, strong) IBInspectable NSString *placeholder;
  5. @property (nonatomic, strong) NSAttributedString *attributedPlaceholder;
  6. @property (nonatomic, strong) IBInspectable UIColor *placeholderColor;
  7. + (UIColor *)defaultPlaceholderColor;
  8. @end