CkeckCourceCell.h 767 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // CkeckCourceCell.h
  3. // LN_School
  4. //
  5. // Created by apple on 2017/4/12.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CkeckCourceCell : UITableViewCell
  10. {
  11. MyBlockType cellBlock;
  12. }
  13. @property (nonatomic, strong) UILabel *nameLabel;
  14. @property (nonatomic, strong) UILabel *subjectLabel;
  15. @property (nonatomic, strong) UILabel *CheckNameLabel;
  16. @property (nonatomic, strong) UILabel *timeLabel;
  17. @property (nonatomic, strong) UIImageView *selectImgView;
  18. @property (nonatomic, strong) UIButton *checkBtn;
  19. @property (nonatomic, strong) NSDictionary *dataDic;
  20. @property (nonatomic, assign) BOOL isShowImg;
  21. @property (nonatomic, assign) BOOL cellIsSelected;
  22. - (void)clickSendBtnWithBlock:(MyBlockType)block;
  23. @end