mirror of
https://github.com/status-im/react-native-camera-kit.git
synced 2025-03-01 08:00:42 +00:00
19 lines
416 B
C
19 lines
416 B
C
|
//
|
||
|
// CKGalleryCollectionViewCell.h
|
||
|
// ReactNativeCameraKit
|
||
|
//
|
||
|
// Created by Ran Greenberg on 20/06/2016.
|
||
|
// Copyright © 2016 Wix. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface CKGalleryCollectionViewCell : UICollectionViewCell
|
||
|
|
||
|
@property (nonatomic, strong) UIImage *thumbnailImage;
|
||
|
@property (nonatomic, copy) NSString *representedAssetIdentifier;
|
||
|
|
||
|
@property (nonatomic) BOOL isSelected;
|
||
|
|
||
|
@end
|