SendInfoGroupCell.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // SendInfoGroupCell.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. @class DepartmentModel;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class SendInfoGroupModel;
  12. //@protocol SendInfoGroupCellDelegate <NSObject>
  13. //@optional
  14. //- (void)selectCellback:(DepartmentModel *)model withIndexRow:(NSIndexPath *)index;
  15. //- (void)noSelectCellback:(DepartmentModel *)model withIndexRow:(NSIndexPath *)index;
  16. //
  17. //- (void)selectCellbackDepartUserModel:(SelectModel *)model withIndexRow:(NSIndexPath *)index;
  18. //- (void)noSelectCellbackDepartUserModel:(SelectModel *)model withIndexRow:(NSIndexPath *)index;
  19. //@end
  20. /// 带图片的
  21. @interface SendInfoGroupCell : TDTableViewCell
  22. @property (weak, nonatomic) IBOutlet TDButton *selectbuton;
  23. @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
  24. @property (weak, nonatomic) IBOutlet UILabel *nameLab;
  25. @property (weak, nonatomic) IBOutlet UIImageView *rightImgeView;
  26. - (void)loadDataModel:(DepartmentModel *)model indexWith:(NSIndexPath *)index;
  27. - (void)loadDataDepartUserModel:(SelectModel *)model indexWith:(NSIndexPath *)index;
  28. @end
  29. NS_ASSUME_NONNULL_END