summary refs log tree commit diff stats
path: root/TestFlight.h
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-08-22 11:13:42 -0400
committerStarla Insigna <starla4444@gmail.com>2011-08-22 11:13:42 -0400
commit3caffadb393cada7d9bbc433e0c96e6650ed873a (patch)
tree1c2f89dfe20dc11dfe945683c8b1bc3190069fc1 /TestFlight.h
parent6906cf0ce4f8266173d67a7b9fccc56747d5d618 (diff)
downloadcartcollect-3caffadb393cada7d9bbc433e0c96e6650ed873a.tar.gz
cartcollect-3caffadb393cada7d9bbc433e0c96e6650ed873a.tar.bz2
cartcollect-3caffadb393cada7d9bbc433e0c96e6650ed873a.zip
Integrated TestFlight SDK
See https://testflightapp.com/sdk/doc/
Diffstat (limited to 'TestFlight.h')
-rw-r--r--TestFlight.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/TestFlight.h b/TestFlight.h new file mode 100644 index 0000000..cd98c52 --- /dev/null +++ b/TestFlight.h
@@ -0,0 +1,35 @@
1//
2// TestFlight.h
3// libTestFlight
4//
5// Created by Colin Humber on 8/25/10.
6// Copyright 2010 23 Divide Apps. All rights reserved.
7
8#import <Foundation/Foundation.h>
9
10@interface TestFlight : NSObject {
11
12}
13
14/**
15 Add custom environment information
16 If you want to track a user name from your application you can add it here
17 */
18+ (void)addCustomEnvironmentInformation:(NSString *)information forKey:(NSString*)key;
19
20/**
21 Starts a TestFlight session
22 */
23+ (void)takeOff:(NSString *)teamToken;
24
25/**
26 Track when a user has passed a checkpoint after the flight has taken off. Eg. passed level 1, posted high score
27 */
28+ (void)passCheckpoint:(NSString *)checkpointName;
29
30/**
31 Opens a feeback window that is not attached to a checkpoint
32 */
33+ (void)openFeedbackView;
34
35@end