24 lines
428 B
Objective-C
24 lines
428 B
Objective-C
//
|
|
// CustomReviceTableViewCell.m
|
|
// XinjiangProject
|
|
//
|
|
// Created by Apple on 2024/7/5.
|
|
//
|
|
|
|
#import "CustomReviceTableViewCell.h"
|
|
|
|
@implementation CustomReviceTableViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|