1234567891011121314151617181920212223242526272829303132333435 |
- //
- // CkeckCourceCell.h
- // LN_School
- //
- // Created by apple on 2017/4/12.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|