Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
//
//  TemporaryFileService.h
//  DynamicEngine
//
//  Created by Mobile3D on 22/01/15.
//  Copyright (c) 2015 Mobile3D. All rights reserved.
//

#import <Foundation/Foundation.h>

typedef void(^TemporaryFileSavedBlock)(NSURL *fileURL, NSString *utiType, NSError *error);

@interface TemporaryFileService : NSObject

+ (instancetype)sharedInstance;

- (void) saveData:(NSData *) dataToSave ofMimeType:(NSString *) mimeType toTemporaryFileWithCompletionBlock:(TemporaryFileSavedBlock) completionBlock;

@end