24 lines
379 B
Mathematica
24 lines
379 B
Mathematica
|
|
//
|
||
|
|
// SPMineCell.m
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/1/5.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "SPMineCell.h"
|
||
|
|
|
||
|
|
@implementation SPMineCell
|
||
|
|
|
||
|
|
- (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
|