SendGroupBCell.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. #import "MailModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class AddressBookGroupsModel;
  12. //@protocol SendGroupBCellDelegate <NSObject>
  13. //
  14. //@optional
  15. //- (void)noSelectAddressBookGroups:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
  16. //- (void)selectAddressBookGroups:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
  17. //
  18. //- (void)noSelectDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
  19. //- (void)selectDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
  20. //
  21. //
  22. //@end
  23. /// 不带图片的
  24. @interface SendGroupBCell : TDTableViewCell
  25. @property (weak, nonatomic) IBOutlet TDButton *selectbuton;
  26. @property (weak, nonatomic) IBOutlet UILabel *nameLab;
  27. @property (weak, nonatomic) IBOutlet UIImageView *rightImgeView;
  28. // 自建分组添加联系人调用 | 选择抄送人一级页面 调用
  29. - (void)loadDataModel:(AddressBookGroupsModel *)model WithIndex:(NSIndexPath *)index;
  30. // 选择抄送人二级页面 调用
  31. - (void)loadDataModelDepartment:(Department *)model WithIndex:(NSIndexPath *)index;
  32. - (void)setDataModel:(MailModel *)model;
  33. @end
  34. NS_ASSUME_NONNULL_END