天天省钱快报

KBSearchNoDataView.h 440B

123456789101112131415161718192021
  1. //
  2. // KBSearchNoDataView.h
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/2/5.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YHSearchNoDataViewDelegate;
  10. @interface KBSearchNoDataView : UICollectionReusableView
  11. @property (nonatomic, weak) id<YHSearchNoDataViewDelegate> delegate;
  12. @end
  13. @protocol YHSearchNoDataViewDelegate <NSObject>
  14. @optional
  15. - (void)yh_SearchNoDataViewDidRefresh;
  16. @end