32 lines
656 B
Objective-C
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
|