| 123456789101112131415161718192021 |
- //
- // ChatBatchView.h
- // AIIM
- //
- // Created by qitewei on 2025/5/10.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatBatchView : UIView
- @property (nonatomic, strong) UIButton * closeBtn;
- @property (nonatomic, strong) UIButton * multipleForwardBtn;
- @property (nonatomic, strong) UIButton * singleForwardBtn;
- @property (nonatomic, strong) UIButton * deleteBtn;
- @property (nonatomic,copy) void(^indexOfBatchClicked)(NSInteger index);
- @end
- NS_ASSUME_NONNULL_END
|