UIPlaceHolderTextView.h 437 B

123456789101112131415161718
  1. //
  2. // UIPlaceHolderTextView.h
  3. // xbxm
  4. //
  5. // Created by Scott Su on 14-12-6.
  6. // Copyright (c) 2014年 tongxueplus. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIPlaceHolderTextView : UITextView
  10. @property (nonatomic, retain) NSString *placeholder;
  11. @property (nonatomic, retain) UIColor *placeholderColor;
  12. @property (nonatomic, retain) UILabel *placeHolderLabel;
  13. -(void)textChanged:(NSNotification*)notification;
  14. @end