// // LogisticsCell.h // yunbaolive // // Created by ybRRR on 2020/6/12. // Copyright © 2020 cat. All rights reserved. // #import 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