// // BloodAndOxygenTableViewCell.m // tongxin // // Created by ecell on 2023/4/27. // Copyright © 2023 xTT. All rights reserved. // #import "BloodAndOxygenTableViewCell.h" @implementation BloodAndOxygenTableViewCell - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; if (self) { self.selectionStyle = UITableViewCellSelectionStyleNone; self.backgroundColor = UIColor.clearColor; [self subCellView]; } return self; } - (void)subCellView { } - (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