12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // WorkFlowSearchItemCell.m
- // smartRhino
- //
- // Created by Android on 2019/12/17.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "WorkFlowSearchItemCell.h"
- #import "MeetingListModel.h"
- @interface WorkFlowSearchItemCell ()
- @end
- @implementation WorkFlowSearchItemCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- self.itemBtn.layer.cornerRadius = 3.f;
- self.itemBtn.clipsToBounds = YES;
- }
- - (void)setData:(LocationsModel *)model{
- [self.itemBtn setTitle:model.Address forState:UIControlStateNormal];
- @weakify(self);
- [self.itemBtn setAction:^{
- @strongify(self);
- if (self.selectedBlock) {
- self.selectedBlock(model);
- }
- }];
- self.itemBtn.selected = model.isSelect;
- }
- @end
|