SLEditTextView.h 548 B

123456789101112131415161718192021
  1. //
  2. // SLEditTextView.h
  3. // DarkMode
  4. //
  5. // Created by wsl on 2019/10/17.
  6. // Copyright © 2019 wsl. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 文本水印编辑 工具
  11. @interface SLEditTextView : UIView
  12. /// 编辑文本完成
  13. @property (nonatomic, copy) void(^editTextCompleted)(UILabel * _Nullable label);
  14. /// 配置编辑参数 文本颜色textColor、背景颜色backgroundColor、文本text
  15. @property (nonatomic, copy) void(^configureEditParameters)(NSDictionary *parameters);
  16. @end
  17. NS_ASSUME_NONNULL_END