12345678910111213141516171819202122 |
- //
- // KBHeaderReusableView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/18.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBTypeButtonHeader.h"
- @protocol YHTypeReusableDelegate <NSObject>
- - (void)YHTypeReusableViewDidSelectedIndex:(NSInteger)index;
- @end
- @interface KBHeaderReusableView : UICollectionReusableView
- @property (nonatomic, weak) id<YHTypeReusableDelegate> delegate;
- @end
|