mirror of
https://github.com/status-im/react-native-camera-kit.git
synced 2025-02-28 23:50:47 +00:00
21 lines
407 B
Objective-C
21 lines
407 B
Objective-C
//
|
|
// GalleryData.h
|
|
// ReactNativeCameraKit
|
|
//
|
|
// Created by Ran Greenberg on 30/06/2016.
|
|
// Copyright © 2016 Wix. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
@import Photos;
|
|
|
|
@interface GalleryData : NSObject
|
|
|
|
-(instancetype)initWithFetchResults:(PHFetchResult*)fetchResults selectedImagesIds:(NSArray*)selectedImagesIds;
|
|
|
|
@property (nonatomic, strong, readonly) NSArray *data;
|
|
|
|
|
|
|
|
@end
|