Files
OrderScheduling/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.m
T
2023-08-18 17:28:57 +08:00

32 lines
656 B
Objective-C

//
// DDBaseTableViewCell.m
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2023/2/10.
#import "DDBaseTableViewCell.h"
@implementation DDBaseTableViewCell
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
}
return self;
}
- (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