| 12345678910111213141516171819202122 |
- //
- // MORankNoDataCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/12/7.
- //
- #define MORankNoDataCell_ID @"MORankNoDataCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MORankNoDataCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLab;
- @end
- NS_ASSUME_NONNULL_END
|