RQCommonReusableView.h 664 B

12345678910111213141516171819202122
  1. //
  2. // RQCommonReusableView.h
  3. // YueXueChe
  4. //
  5. // Created by 张嵘 on 2018/12/19.
  6. // Copyright © 2018 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RQReactiveViewProtocol.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQCommonReusableView : UICollectionReusableView <RQReactiveViewProtocol>
  12. /// contentLabel
  13. @property (nonatomic, readwrite, strong) UILabel *headerContentLabel;
  14. @property (nonatomic, readwrite, strong) UILabel *footerContentLabel;
  15. /// generate a header
  16. + (instancetype)reusableViewWithCollectionView:(UICollectionView *)collectionView OfKind:(NSString *)elementKind forIndexPath:(NSIndexPath *)indexPath;
  17. @end
  18. NS_ASSUME_NONNULL_END