| 123456789101112131415161718192021222324 |
- //
- // POImageTitleAlertCell.h
- // powerone
- //
- // Created by SuperYann on 2023/5/16.
- // Copyright © 2023 onecloud.ltd. All rights reserved.
- //
- #define MOImageTitleAlertCell_ID @"MOImageTitleAlertCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOImageTitleAlertCell : UITableViewCell
- /** */
- @property (nonatomic, strong) UIImageView *icon;
- /** */
- @property (nonatomic, strong) UILabel *titleLab;
- @end
- NS_ASSUME_NONNULL_END
|