1234567891011121314151617181920212223 |
- //
- // ASCheckoutShipMethodCell.m
- // Asteria
- //
- // Created by xingyu on 2024/5/9.
- //
- #import "ASCheckoutShipMethodCell.h"
- @implementation ASCheckoutShipMethodCell
- - (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
|