| 123456789101112131415161718192021222324 |
- //
- // ScanHomeCellTableViewCell.m
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 5/12/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import "ScanHomeCell.h"
- @implementation ScanHomeCell
- - (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
|