| 123456789101112131415161718192021 |
- //
- // MOTextAlertCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/11/2.
- //
- #define MOTextAlertCell_ID @"MOTextAlertCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOTextAlertCell : UITableViewCell
- /** */
- @property (nonatomic, strong) UILabel *titleLab;
- @end
- NS_ASSUME_NONNULL_END
|