| 1234567891011121314151617181920212223 |
- //
- // PickerCollectionViewCell.m
- // 相机
- //
- //
- #import "DKPhotoPickerCollectionViewCell.h"
- static NSString *const _cellIdentifier = @"cell";
- @implementation DKPhotoPickerCollectionViewCell
- + (instancetype)cellWithCollectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
-
- DKPhotoPickerCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:_cellIdentifier forIndexPath:indexPath];
-
- if ([[cell.contentView.subviews lastObject] isKindOfClass:[UIImageView class]]) {
- [[cell.contentView.subviews lastObject] removeFromSuperview];
- }
-
- return cell;
- }
- @end
|