WorkFlowSearchView.h 503 B

12345678910111213141516171819202122232425
  1. //
  2. // WorkFlowSearchView.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/5.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol WorkFlowSearchViewDelegate <NSObject>
  11. - (void)didSelectWorkFlowSearchViewAction:(TDButton *)sender;
  12. @end
  13. @interface WorkFlowSearchView : UIView
  14. @property (nonatomic, weak) id<WorkFlowSearchViewDelegate> delegate;
  15. //- (instancetype)initWithWorkFlowSearchView:(CGRect)frame;
  16. @end
  17. NS_ASSUME_NONNULL_END