LogisticsCell.h 514 B

123456789101112131415161718192021
  1. //
  2. // LogisticsCell.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/6/12.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface LogisticsCell : UITableViewCell
  11. @property (strong, nonatomic) IBOutlet UIImageView *thumbImg;
  12. @property (strong, nonatomic) IBOutlet UILabel *titleLb;
  13. @property (nonatomic, strong)NSDictionary *dataDic;
  14. +(LogisticsCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath;
  15. @end
  16. NS_ASSUME_NONNULL_END