24 lines
406 B
Mathematica
24 lines
406 B
Mathematica
|
|
//
|
||
|
|
// SPBlindXunlehuiCell.m
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by yons on 2024/11/21.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "SPBlindXunlehuiCell.h"
|
||
|
|
|
||
|
|
@implementation SPBlindXunlehuiCell
|
||
|
|
|
||
|
|
- (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
|