12345678910111213141516171819202122 |
- //
- // RQCommonReusableView.h
- // YueXueChe
- //
- // Created by 张嵘 on 2018/12/19.
- // Copyright © 2018 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RQReactiveViewProtocol.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQCommonReusableView : UICollectionReusableView <RQReactiveViewProtocol>
- /// 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
|