线上所有马甲包模板,与《猎豆》同UI。域名zhuadd

HSQFindNavBarStaticView.h 504B

12345678910111213141516171819202122
  1. //
  2. // HSQFindNavBarStaticView.h
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/1/29.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YHFindNavBarStaticViewDelegate;
  10. @interface HSQFindNavBarStaticView : UIView
  11. @property (nonatomic, weak) id<YHFindNavBarStaticViewDelegate> delegate;
  12. @property (nonatomic, strong) UIButton *searchButton;
  13. @end
  14. @protocol YHFindNavBarStaticViewDelegate <NSObject>
  15. @optional
  16. - (void)yh_FindNavBarStaticViewClickSearch;
  17. @end