| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // RADetailActionSubCell.m
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/2.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RADetailActionSubCell.h"
- #import "RADetailActionModel.h"
- @interface RADetailActionSubCell ()
- @property (strong, nonatomic) IBOutlet UIButton *actionTitleBtn;
- @end
- @implementation RADetailActionSubCell
- - (void)setModel:(RADetailActionModel *)model {
- _model = model;
-
- [self.actionTitleBtn setTitle:model.actionTitle forState:UIControlStateNormal];
- }
- - (void)prepareForReuse {
- [super prepareForReuse];
-
- self.model = nil;
- self.delegate = nil;
- }
- - (IBAction)actionBtnClick:(UIButton *)sender {
-
- if (self.delegate && [self.delegate respondsToSelector:@selector(actionSubCell:didClickForModel:)]) {
- [self.delegate actionSubCell:self didClickForModel:self.model];
- }
-
- }
- @end
|