ChatBatchView.h 484 B

123456789101112131415161718192021
  1. //
  2. // ChatBatchView.h
  3. // AIIM
  4. //
  5. // Created by qitewei on 2025/5/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ChatBatchView : UIView
  10. @property (nonatomic, strong) UIButton * closeBtn;
  11. @property (nonatomic, strong) UIButton * multipleForwardBtn;
  12. @property (nonatomic, strong) UIButton * singleForwardBtn;
  13. @property (nonatomic, strong) UIButton * deleteBtn;
  14. @property (nonatomic,copy) void(^indexOfBatchClicked)(NSInteger index);
  15. @end
  16. NS_ASSUME_NONNULL_END