ChatAddressBodyView.h 623 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ChatAddressBodyView.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by Kyle on 2022/3/24.
  6. //
  7. #import "KSJXBodyView.h"
  8. typedef void(^ShareCallback)(BOOL isSuccess, NSString * _Nonnull desc);
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatAddressBodyView : KSJXBodyView
  11. @property (nonatomic, strong) NSString *searchKey;
  12. @property (nonatomic, assign) BOOL isShareImage;
  13. @property (nonatomic, strong) NSString *message;
  14. @property (nonatomic, strong) UIImage *shareImage;
  15. @property (nonatomic, strong) NSString *filePath;
  16. - (void)refreshAndRequestData;
  17. - (void)shareCallback:(ShareCallback)callback;
  18. @end
  19. NS_ASSUME_NONNULL_END