JXSiDaiCell.h 575 B

1234567891011121314151617181920212223
  1. //
  2. // JXSiDaiCell.h
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/6/4.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^ImageBtnBlock)(UIButton *sender);
  10. typedef void(^YueyueBlockBtn)(UIButton *btn);
  11. @interface JXSiDaiCell : UITableViewCell
  12. + (instancetype)cellWithTableView:(UITableView *)tableView;
  13. @property (weak, nonatomic) IBOutlet UITextView *teacherDetaiL;
  14. @property (nonatomic,strong) NSDictionary *dictData;
  15. @property (nonatomic,copy) ImageBtnBlock blockIMG;
  16. @property (nonatomic,copy) YueyueBlockBtn yuyueblock;
  17. @end