| 123456789101112131415161718192021 |
- //
- // LogisticsCell.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/6/12.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface LogisticsCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UIImageView *thumbImg;
- @property (strong, nonatomic) IBOutlet UILabel *titleLb;
- @property (nonatomic, strong)NSDictionary *dataDic;
- +(LogisticsCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|