ClubApplicationTableViewCell.h 945 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ClubApplicationTableViewCell.h
  3. // DSH
  4. //
  5. // Created by 张毅成 on 2018/12/28.
  6. // Copyright © 2018 WZX. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ClubApplicationModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void(^ClubApplicationTableViewCellBlock)(UIButton *button);
  12. @interface ClubApplicationTableViewCell : UITableViewCell
  13. @property (weak, nonatomic) IBOutlet UILabel *label0;
  14. @property (weak, nonatomic) IBOutlet UIButton *button0;
  15. @property (weak, nonatomic) IBOutlet UIButton *button1;
  16. @property (weak, nonatomic) IBOutlet UIButton *button2;
  17. @property (weak, nonatomic) IBOutlet UIButton *button3;
  18. @property (weak, nonatomic) IBOutlet UITextField *textField;
  19. @property (weak, nonatomic) IBOutlet UITextView *textView;
  20. @property (copy, nonatomic) ClubApplicationTableViewCellBlock blockDidTouchButton;
  21. + (instancetype)cellWithTableView:(UITableView *)tableView AndIndex:(NSInteger)index;
  22. @end
  23. NS_ASSUME_NONNULL_END