| 1234567891011121314151617181920 |
- //
- // RAPhotoItemCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/10/30.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RAPhotoItemModel;
- @interface RAPhotoItemCell : UICollectionViewCell
- + (NSString *)reuseId;
- + (void)regist2CollectionView:(UICollectionView *)collectionView;
- @property (nonatomic,weak) RAPhotoItemModel *model;
- @end
|