KKTextView.h 521 B

123456789101112131415161718192021222324
  1. //
  2. // KKTextView.h
  3. // WWImageEdit
  4. //
  5. // Created by 邬维 on 2017/1/18.
  6. // Copyright © 2017年 kook. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class KKTextTool;
  10. static NSString* const kTextViewActiveViewDidTapNotification = @"kTextViewActiveViewDidTapNotification";
  11. @interface KKTextView : UIView
  12. @property (nonatomic, strong) UIColor *textColor;
  13. + (void)setActiveTextView:(KKTextView*)view;
  14. - (id)initWithTool:(KKTextTool*)tool;
  15. - (void)setLableText:(NSString *)text;
  16. - (NSString *)getLableText;
  17. @end