ASCheckoutShipMethodCell.m 418 B

1234567891011121314151617181920212223
  1. //
  2. // ASCheckoutShipMethodCell.m
  3. // Asteria
  4. //
  5. // Created by xingyu on 2024/5/9.
  6. //
  7. #import "ASCheckoutShipMethodCell.h"
  8. @implementation ASCheckoutShipMethodCell
  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. @end