123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // LZBTextView.h
- // LZBKeyBoardView
- //
- // demo地址:https://github.com/lzbgithubcode/LZBKeyBoardView.git
- // Created by zibin on 16/11/29.
- // Copyright © 2016年 apple. All rights reserved.
- //
- #pragma mark - 自定义带有占位文字的UITextView
- #import <UIKit/UIKit.h>
- @interface LZBTextView : UITextView
- /**
- * 设置占位文字
- */
- @property (nonatomic, copy) NSString *placeholder;
- /**
- * 设置占位文字颜色
- */
- @property (nonatomic, strong) UIColor *placeholderColor;
- /**
- * 占位文字的X偏移量
- */
- @property (nonatomic, assign) CGFloat placeHolderOffsetX;
- /**
- * 占位文字的Y偏移量
- */
- @property (nonatomic, assign) CGFloat placeHolderOffsetY;
- /**
- * 光标的偏移量
- */
- @property (nonatomic, assign) UIOffset cursorOffset;
- /**
- * 是否隐藏
- */
- @property (nonatomic, assign) BOOL placeHolderHidden;
- @end
|