Brak opisu

UIPlaceHolderTextView.h 423B

1234567891011121314151617181920
  1. //
  2. // UIPlaceHolderTextView.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/6/13.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. IB_DESIGNABLE
  10. @interface UIPlaceHolderTextView : UITextView
  11. @property (nonatomic, retain) IBInspectable NSString *placeholder;
  12. @property (nonatomic, retain) IBInspectable UIColor *placeholderColor;
  13. -(void)textChanged:(NSNotification*)notification;
  14. @end