MyWorkFlowFooterView.h 988 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // MyWorkFlowFooterView.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/7.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol MyWorkFlowFooterViewDelegate <NSObject>
  11. - (void)didMyWorkFlowFooterViewBack:(NSInteger)index;
  12. @end
  13. @interface MyWorkFlowFooterViewCell : UIView
  14. @property (nonatomic, strong) UIImageView *imageVIew;
  15. @property (nonatomic, strong) UILabel *nameLab;
  16. @property (nonatomic, strong) UIButton *button;
  17. @end
  18. @interface MyWorkFlowFooterView : UIView
  19. @property (nonatomic, weak) id<MyWorkFlowFooterViewDelegate> delegate;
  20. @property (nonatomic, strong) MyWorkFlowFooterViewCell *agreeView;
  21. @property (nonatomic, strong) MyWorkFlowFooterViewCell *noAgreeView;
  22. @property (nonatomic, strong) MyWorkFlowFooterViewCell *disscusView;
  23. @property (nonatomic, strong) MyWorkFlowFooterViewCell *nextAggreView;
  24. @property (nonatomic, strong) MyWorkFlowFooterViewCell *waitView;
  25. @end
  26. NS_ASSUME_NONNULL_END