CSJDislikeNewRealInputView.h 454 B

12345678910111213141516171819202122
  1. //
  2. // CSJDislikeNewRealInputView.h
  3. // CSJAdSDK
  4. //
  5. // Created by xzj on 2020/4/22.
  6. // Copyright © 2020 bytedance. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CSJDislikeNewRealInputView : UIView
  11. @property (nonatomic, strong, readonly) UITextView *textView;
  12. @property (nonatomic, copy) void (^cancelBlock)(void);
  13. @property (nonatomic, copy) void (^submitBlock)(NSString *text);
  14. @end
  15. NS_ASSUME_NONNULL_END