-
Notifications
You must be signed in to change notification settings - Fork 3
/
R1PhotoEffectsSDK.h
31 lines (20 loc) · 943 Bytes
/
R1PhotoEffectsSDK.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// R1PhotoEffectsSDK.h
// EffectsSDK
//
// Created by Drew Colace on 3/6/13.
// Copyright (c) 2013 RadiumOne. All rights reserved.
//
#import "R1PhotoEffectsController.h"
#import <CoreLocation/CoreLocation.h>
@interface R1PhotoEffectsSDK : NSObject
+ (id)sharedManager;
- (void)enableWithClientID:(NSString *)clientID;
- (R1PhotoEffectsController *)photoEffectsControllerForImage:(UIImage *)image delegate:(id<R1PhotoEffectsEditingViewControllerDelegate>)delegate cropSupport:(BOOL)cropping;
- (void)pushPhotoEffectsControllerOnNavigationController:(UINavigationController *)navController forImage:(UIImage *)image delegate:(id<R1PhotoEffectsEditingViewControllerDelegate>)delegate cropSupport:(BOOL)cropping;
//Optionally report user location
- (void)setLocation:(CLLocationCoordinate2D)location;
//Optionaly report demographic data
- (void)setDemographicData:(NSDictionary *)demographicData;
- (NSString *)sdkVersion;
@end