MMTextView.h 458 B

1234567891011121314151617181920212223242526
  1. //
  2. // MMTextView.h
  3. // RichTextEditDemo
  4. //
  5. // Created by aron on 2017/7/20.
  6. // Copyright © 2017年 aron. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MMPlaceHolderTextView.h"
  10. @class MMTextView;
  11. @protocol MMTextViewDelegate<NSObject>
  12. @optional
  13. - (void)textViewDeleteBackward:(MMTextView *_Nullable)textView;
  14. @end
  15. @interface MMTextView : MMPlaceHolderTextView
  16. @property(nullable,nonatomic,weak) id<MMTextViewDelegate> mm_delegate;
  17. @end