| 1234567891011121314151617181920 |
- //
- // MOMsgCustomTwoTableView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/3/28.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^MsgTableViewpanGestureBeganBlock)(BOOL beginPan);
- @interface MOMsgCustomTwoTableView : UITableView
- @property (nonatomic, copy) MsgTableViewpanGestureBeganBlock panBlock;
- @end
- NS_ASSUME_NONNULL_END
|