12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // MyWorkFlowFooterView.h
- // smartRhino
- //
- // Created by tederen on 2019/11/7.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol MyWorkFlowFooterViewDelegate <NSObject>
- - (void)didMyWorkFlowFooterViewBack:(NSInteger)index;
- @end
- @interface MyWorkFlowFooterViewCell : UIView
- @property (nonatomic, strong) UIImageView *imageVIew;
- @property (nonatomic, strong) UILabel *nameLab;
- @property (nonatomic, strong) UIButton *button;
- @end
- @interface MyWorkFlowFooterView : UIView
- @property (nonatomic, weak) id<MyWorkFlowFooterViewDelegate> delegate;
- @property (nonatomic, strong) MyWorkFlowFooterViewCell *agreeView;
- @property (nonatomic, strong) MyWorkFlowFooterViewCell *noAgreeView;
- @property (nonatomic, strong) MyWorkFlowFooterViewCell *disscusView;
- @property (nonatomic, strong) MyWorkFlowFooterViewCell *nextAggreView;
- @property (nonatomic, strong) MyWorkFlowFooterViewCell *waitView;
- @end
- NS_ASSUME_NONNULL_END
|