25 lines
426 B
Mathematica
25 lines
426 B
Mathematica
|
|
//
|
||
|
|
// SubsidyCell.m
|
||
|
|
// YaYin
|
||
|
|
//
|
||
|
|
// Created by dlan on 2023/1/14.
|
||
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "SubsidyCell.h"
|
||
|
|
|
||
|
|
@implementation SubsidyCell
|
||
|
|
|
||
|
|
- (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
|