1234567891011121314151617181920212223 |
- //
- // JXSiDaiCell.h
- // shiku_im
- //
- // Created by 123 on 2020/6/4.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^ImageBtnBlock)(UIButton *sender);
-
- typedef void(^YueyueBlockBtn)(UIButton *btn);
- @interface JXSiDaiCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (weak, nonatomic) IBOutlet UITextView *teacherDetaiL;
- @property (nonatomic,strong) NSDictionary *dictData;
- @property (nonatomic,copy) ImageBtnBlock blockIMG;
- @property (nonatomic,copy) YueyueBlockBtn yuyueblock;
- @end
|