12345678910111213141516171819202122 |
- //
- // HSQFindNavBarStaticView.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/29.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol YHFindNavBarStaticViewDelegate;
- @interface HSQFindNavBarStaticView : UIView
- @property (nonatomic, weak) id<YHFindNavBarStaticViewDelegate> delegate;
- @property (nonatomic, strong) UIButton *searchButton;
- @end
- @protocol YHFindNavBarStaticViewDelegate <NSObject>
- @optional
- - (void)yh_FindNavBarStaticViewClickSearch;
- @end
|