// // CkeckCourceCell.h // LN_School // // Created by apple on 2017/4/12. // Copyright © 2017年 Danson. All rights reserved. // #import @interface CkeckCourceCell : UITableViewCell { MyBlockType cellBlock; } @property (nonatomic, strong) UILabel *nameLabel; @property (nonatomic, strong) UILabel *subjectLabel; @property (nonatomic, strong) UILabel *CheckNameLabel; @property (nonatomic, strong) UILabel *timeLabel; @property (nonatomic, strong) UIImageView *selectImgView; @property (nonatomic, strong) UIButton *checkBtn; @property (nonatomic, strong) NSDictionary *dataDic; @property (nonatomic, assign) BOOL isShowImg; @property (nonatomic, assign) BOOL cellIsSelected; - (void)clickSendBtnWithBlock:(MyBlockType)block; @end