新UI马甲包

HCCollectionTicketCell.h 535B

123456789101112131415161718192021
  1. //
  2. // HCCollectionTicketCell.h
  3. // hc
  4. //
  5. // Created by hc on 2018/1/24.
  6. // Copyright © 2018年 hc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HCCollectionModel.h"
  10. #import "HCHistoryModel.h"
  11. typedef void (^SimilarClick)(void);
  12. @interface HCCollectionTicketCell : UITableViewCell
  13. + (instancetype)cellWithTableView:(UITableView *)tableView;
  14. @property (nonatomic, strong) HCCollectionModel *model;
  15. @property (nonatomic, strong) HCHistoryModel *historyModel;
  16. @property (nonatomic, copy) SimilarClick similarClick;
  17. @end