#import <UIKit/UIKit.h> @protocol TableCellDelegate <NSObject> - (void)choseTerm:(UIButton *)button; @end @interface TableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIButton *checkButton; @property (weak, nonatomic) IBOutlet UIButton *checkButton2; @property (weak, nonatomic) IBOutlet UILabel *label; @property (assign, nonatomic) BOOL isChecked; @property (assign, nonatomic) id<TableCellDelegate> delegate; - (IBAction)checkAction:(UIButton *)sender; - (IBAction)checkAction2:(UIButton *)sender; #import <UIKit/UIKit.h> @protocol TableCel