1234567891011121314151617181920212223242526272829 |
- //
- // ChatAddressBodyView.h
- // KulexiuForTeacher
- //
- // Created by Kyle on 2022/3/24.
- //
- #import "KSJXBodyView.h"
- typedef void(^ShareCallback)(BOOL isSuccess, NSString * _Nonnull desc);
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatAddressBodyView : KSJXBodyView
- @property (nonatomic, strong) NSString *searchKey;
- @property (nonatomic, assign) BOOL isShareImage;
- @property (nonatomic, strong) NSString *message;
- @property (nonatomic, strong) UIImage *shareImage;
- @property (nonatomic, strong) NSString *filePath;
- - (void)refreshAndRequestData;
- - (void)shareCallback:(ShareCallback)callback;
- @end
- NS_ASSUME_NONNULL_END
|