12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // SendGroupBCell.h
- // smartRhino
- //
- // Created by tederen on 2019/11/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "TDTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @class AddressBookGroupsModel;
- //@protocol SendGroupBCellDelegate <NSObject>
- //
- //@optional
- //- (void)noSelectAddressBookGroups:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
- //- (void)selectAddressBookGroups:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
- //
- //- (void)noSelectDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
- //- (void)selectDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
- //
- //
- //@end
- /// 不带图片的
- @interface SendGroupBCell : TDTableViewCell
- @property (weak, nonatomic) IBOutlet TDButton *selectbuton;
- @property (weak, nonatomic) IBOutlet UILabel *nameLab;
- @property (weak, nonatomic) IBOutlet UIImageView *rightImgeView;
- // 自建分组添加联系人调用 | 选择抄送人一级页面 调用
- - (void)loadDataModel:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
- // 选择抄送人二级页面 调用
- - (void)loadDataModelDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
- @end
- NS_ASSUME_NONNULL_END
|