SendGroupBCell.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // SendGroupBCell.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/4.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TDTableViewCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class AddressBookGroupsModel;
  11. //@protocol SendGroupBCellDelegate <NSObject>
  12. //
  13. //@optional
  14. //- (void)noSelectAddressBookGroups:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
  15. //- (void)selectAddressBookGroups:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
  16. //
  17. //- (void)noSelectDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
  18. //- (void)selectDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
  19. //
  20. //
  21. //@end
  22. /// 不带图片的
  23. @interface SendGroupBCell : TDTableViewCell
  24. @property (weak, nonatomic) IBOutlet TDButton *selectbuton;
  25. @property (weak, nonatomic) IBOutlet UILabel *nameLab;
  26. @property (weak, nonatomic) IBOutlet UIImageView *rightImgeView;
  27. // 自建分组添加联系人调用 | 选择抄送人一级页面 调用
  28. - (void)loadDataModel:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
  29. // 选择抄送人二级页面 调用
  30. - (void)loadDataModelDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
  31. @end
  32. NS_ASSUME_NONNULL_END