新UI马甲包

HCFindNavBarStaticView.h 487B

12345678910111213141516171819202122
  1. //
  2. // HCFindNavBarStaticView.h
  3. // hc
  4. //
  5. // Created by xiaoxi on 2018/1/29.
  6. // Copyright © 2018年 hc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YHFindNavBarStaticViewDelegate;
  10. @interface HCFindNavBarStaticView : 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