| 12345678910111213141516171819202122232425 |
- //
- // MOPkRankContributionTableView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/2/19.
- //
- #import <UIKit/UIKit.h>
- #import "MOPkContribuCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOPkRankContributionTableView : UIView<JXCategoryListContentViewDelegate>
- //类型(1=我方,2=对方)
- @property (nonatomic, assign) NSInteger viewType;
- @property (nonatomic, copy) NSString *roomId;
- //类型(1=我方,2=对方)
- @property (nonatomic, copy) void (^cellClickBlock)(NSString *userId, NSInteger viewType);
- @end
- NS_ASSUME_NONNULL_END
|