LocalListCell.m 566 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // LocalListCell.m
  3. // iShop
  4. //
  5. // Created by Rui Zhang on 1/19/24.
  6. //
  7. #import "LocalListCell.h"
  8. @implementation LocalListCell
  9. - (void)awakeFromNib {
  10. [super awakeFromNib];
  11. // Initialization code
  12. }
  13. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  14. [super setSelected:selected animated:animated];
  15. // Configure the view for the selected state
  16. }
  17. - (IBAction)onCheckClick:(id)sender {
  18. if(self.CheckBlock)
  19. self.CheckBlock();
  20. }
  21. - (IBAction)onDelClick:(id)sender {
  22. if(self.DelBlock)
  23. self.DelBlock();
  24. }
  25. @end