RQCommonCollectionViewCell.h 542 B

1234567891011121314151617
  1. //
  2. // RQCommonCollectionViewCell.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. @interface RQCommonCollectionViewCell : UICollectionViewCell <RQReactiveViewProtocol>
  11. //@property (assign, readwrite, nonatomic) BOOL selected;
  12. + (instancetype)cellWithCollectionView:(UICollectionView *)collectionView forIndexPath:(NSIndexPath *)indexPath;
  13. - (void)setIndexPath:(NSIndexPath *)indexPath rowsInSection:(NSInteger)rows;
  14. @end