口袋优选

KBMyTicketCell.h 472B

12345678910111213141516171819
  1. //
  2. // KBMyTicketCell.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/25.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KBMyTicketModel.h"
  10. #import "KBHistoryModel.h"
  11. typedef void (^SaimarClick) (void);
  12. @interface KBMyTicketCell : UITableViewCell
  13. + (instancetype)cellWithTableView:(UITableView *)tableView;
  14. @property (nonatomic, strong) KBMyTicketModel *model;
  15. @property (nonatomic, copy) SaimarClick saimarClick;
  16. @end