12345678910111213141516171819202122232425 |
- //
- // WorkFlowSearchView.h
- // smartRhino
- //
- // Created by tederen on 2019/11/5.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol WorkFlowSearchViewDelegate <NSObject>
- - (void)didSelectWorkFlowSearchViewAction:(TDButton *)sender;
- @end
- @interface WorkFlowSearchView : UIView
- @property (nonatomic, weak) id<WorkFlowSearchViewDelegate> delegate;
- //- (instancetype)initWithWorkFlowSearchView:(CGRect)frame;
- @end
- NS_ASSUME_NONNULL_END
|