react-native-camera-kit/ios/lib/ReactNativeCameraKit/CKGalleryCollectionViewCell.h
Ran Greenberg bbb960b7ac sync gallery between js and native
add selected image on cell - not finish
2016-07-04 01:01:29 +03:00

22 lines
456 B
Objective-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
+(void)base64Image:(NSString*)base64;
@property (nonatomic, strong) UIImage *thumbnailImage;
@property (nonatomic, copy) NSString *representedAssetIdentifier;
@property (nonatomic) BOOL isSelected;
@end