AddPeopleToGongWenCell.h 933 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // AddPeopleToGongWenCell.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/2.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TDTableViewCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 添加抄送人代理
  11. @protocol AddPeopleToGongWenCellDelegate <NSObject>
  12. - (void)addLookUpPeopleSuccess:(nullable void (^)( id _Nullable responseObject)) success failure:(nullable void (^)(NSError *error))failure;
  13. @end
  14. typedef void(^AddPeopleTouchBlock)(void);
  15. @interface AddPeopleToGongWenCell : TDTableViewCell
  16. @property (nonatomic, copy) AddPeopleTouchBlock backBlock;
  17. @property (weak, nonatomic) IBOutlet UILabel *namelab;
  18. @property (weak, nonatomic) IBOutlet UIImageView *haveNeedImageView;
  19. @property (weak, nonatomic) IBOutlet UICollectionView *collectView;
  20. @property (nonatomic, strong) NSMutableArray *approvalSection;
  21. @property (nonatomic,weak) id<AddPeopleToGongWenCellDelegate>delegate;
  22. @end
  23. NS_ASSUME_NONNULL_END