// // 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 // //@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