123456789101112131415161718192021 |
- //
- // KBSearchNoDataView.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/2/5.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol YHSearchNoDataViewDelegate;
- @interface KBSearchNoDataView : UICollectionReusableView
- @property (nonatomic, weak) id<YHSearchNoDataViewDelegate> delegate;
- @end
- @protocol YHSearchNoDataViewDelegate <NSObject>
- @optional
- - (void)yh_SearchNoDataViewDidRefresh;
- @end
|