diff options
| author | Starla Insigna <starla4444@gmail.com> | 2011-08-23 09:35:16 -0400 |
|---|---|---|
| committer | Starla Insigna <starla4444@gmail.com> | 2011-08-23 09:35:16 -0400 |
| commit | 887e595136e71f52ea585f17d73e5ac3baefb7eb (patch) | |
| tree | cc097b2bb119456878687af6c757ee8bc12e09be /TestFlight.h | |
| parent | 02d9a87417837ffda602b2d06c2c6897d15a1202 (diff) | |
| parent | 3caffadb393cada7d9bbc433e0c96e6650ed873a (diff) | |
| download | cartcollect-887e595136e71f52ea585f17d73e5ac3baefb7eb.tar.gz cartcollect-887e595136e71f52ea585f17d73e5ac3baefb7eb.tar.bz2 cartcollect-887e595136e71f52ea585f17d73e5ac3baefb7eb.zip | |
Pulled in level selection screen (version 0.3) v0.3
Closes #207
Diffstat (limited to 'TestFlight.h')
| -rw-r--r-- | TestFlight.h | 35 |
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 | ||
