1234567891011121314151617181920 |
- //
- // UIPlaceHolderTextView.h
- // FirstLink
- //
- // Created by ascii on 16/6/13.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- IB_DESIGNABLE
- @interface UIPlaceHolderTextView : UITextView
- @property (nonatomic, retain) IBInspectable NSString *placeholder;
- @property (nonatomic, retain) IBInspectable UIColor *placeholderColor;
- -(void)textChanged:(NSNotification*)notification;
- @end
|