| 1234567891011121314151617181920212223242526272829303132 |
- //
- // LocalListCell.m
- // iShop
- //
- // Created by Rui Zhang on 1/19/24.
- //
- #import "LocalListCell.h"
- @implementation LocalListCell
- - (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
- }
- - (IBAction)onCheckClick:(id)sender {
- if(self.CheckBlock)
- self.CheckBlock();
- }
- - (IBAction)onDelClick:(id)sender {
-
- if(self.DelBlock)
- self.DelBlock();
- }
- @end
|