123456789101112131415161718192021 |
- //
- // HCCollectionTicketCell.h
- // hc
- //
- // Created by hc on 2018/1/24.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HCCollectionModel.h"
- #import "HCHistoryModel.h"
- typedef void (^SimilarClick)(void);
- @interface HCCollectionTicketCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) HCCollectionModel *model;
- @property (nonatomic, strong) HCHistoryModel *historyModel;
- @property (nonatomic, copy) SimilarClick similarClick;
- @end
|