CarCollectionViewCell.h 519 B

1234567891011121314151617181920
  1. //
  2. // CarCollectionViewCell.h
  3. // FanweApp
  4. //
  5. // Created by 志刚杨 on 2017/12/14.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CarItem.h"
  10. @interface CarCollectionViewCell : UICollectionViewCell
  11. @property(nonatomic, strong) CarItemModel *model;
  12. @property (weak, nonatomic) IBOutlet UIImageView *carpic;
  13. @property (weak, nonatomic) IBOutlet UILabel *carname;
  14. @property (weak, nonatomic) IBOutlet UILabel *carcoin;
  15. @property (weak, nonatomic) IBOutlet UILabel *exp;
  16. @end