28 lines
688 B
Objective-C
Executable File
28 lines
688 B
Objective-C
Executable File
//
|
|
// GMMicCharmCell.h
|
|
// romantic
|
|
//
|
|
// Created by MAC on 2022/12/29.
|
|
// Copyright © 2022 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "GMMicCharmModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface GMMicCharmCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *valueLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *gxImgV;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *mlImgV;
|
|
|
|
@property (nonatomic, strong) GMMicCharmModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|