12345678910111213141516171819202122232425262728 |
- //
- // ClubApplicationTableViewCell.h
- // DSH
- //
- // Created by 张毅成 on 2018/12/28.
- // Copyright © 2018 WZX. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ClubApplicationModel.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^ClubApplicationTableViewCellBlock)(UIButton *button);
- @interface ClubApplicationTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *label0;
- @property (weak, nonatomic) IBOutlet UIButton *button0;
- @property (weak, nonatomic) IBOutlet UIButton *button1;
- @property (weak, nonatomic) IBOutlet UIButton *button2;
- @property (weak, nonatomic) IBOutlet UIButton *button3;
- @property (weak, nonatomic) IBOutlet UITextField *textField;
- @property (weak, nonatomic) IBOutlet UITextView *textView;
- @property (copy, nonatomic) ClubApplicationTableViewCellBlock blockDidTouchButton;
- + (instancetype)cellWithTableView:(UITableView *)tableView AndIndex:(NSInteger)index;
- @end
- NS_ASSUME_NONNULL_END
|