12345678910111213141516171819202122232425 |
- //
- // KBFindNavBarView.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/19.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol YHFindNavBarViewDelegate;
- @interface KBFindNavBarView : UICollectionReusableView
- @property (nonatomic, weak) id<YHFindNavBarViewDelegate> delegate;
- @property (nonatomic, strong) UILabel *leftLabel;
- @property (nonatomic, strong) UIButton *rightButton;
- @property (nonatomic, strong) UIButton *bottomButton;
- @end
- @protocol YHFindNavBarViewDelegate <NSObject>
- @optional
- - (void)yh_FinNavBarViewClickHelp;
- - (void)yh_FindNavBarViewClickSearch;
- @end
|