JXCourseListCell.h 635 B

1234567891011121314151617181920212223242526
  1. //
  2. // JXCourseListCell.h
  3. // shiku_im
  4. //
  5. // Created by p on 2017/10/20.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXCourseListVC.h"
  10. typedef int(^JXCourseListCellBlock)(int type);
  11. @interface JXCourseListCell : UITableViewCell
  12. @property (nonatomic, assign) NSInteger index;
  13. @property (nonatomic, weak) JXCourseListVC *vc;
  14. @property (nonatomic, assign) JXCourseListCellBlock block;
  15. @property (nonatomic, assign) BOOL isMultiselect;
  16. @property (nonatomic, assign) NSInteger indexNum;
  17. @property (nonatomic, strong) UIButton *multiselectBtn;
  18. - (void) setData:(NSDictionary *)dict;
  19. @end