1234567891011121314151617 |
- //
- // RQCommonCollectionViewCell.h
- // YueXueChe
- //
- // Created by 张嵘 on 2018/12/19.
- // Copyright © 2018 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RQReactiveViewProtocol.h"
- @interface RQCommonCollectionViewCell : UICollectionViewCell <RQReactiveViewProtocol>
- //@property (assign, readwrite, nonatomic) BOOL selected;
- + (instancetype)cellWithCollectionView:(UICollectionView *)collectionView forIndexPath:(NSIndexPath *)indexPath;
- - (void)setIndexPath:(NSIndexPath *)indexPath rowsInSection:(NSInteger)rows;
- @end
|