// // RQCommonReusableView.h // YueXueChe // // Created by 张嵘 on 2018/12/19. // Copyright © 2018 lee. All rights reserved. // #import #import "RQReactiveViewProtocol.h" NS_ASSUME_NONNULL_BEGIN @interface RQCommonReusableView : UICollectionReusableView /// contentLabel @property (nonatomic, readwrite, strong) UILabel *headerContentLabel; @property (nonatomic, readwrite, strong) UILabel *footerContentLabel; /// generate a header + (instancetype)reusableViewWithCollectionView:(UICollectionView *)collectionView OfKind:(NSString *)elementKind forIndexPath:(NSIndexPath *)indexPath; @end NS_ASSUME_NONNULL_END