From 3caffadb393cada7d9bbc433e0c96e6650ed873a Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Mon, 22 Aug 2011 11:13:42 -0400 Subject: Integrated TestFlight SDK See https://testflightapp.com/sdk/doc/ --- TestFlight.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 TestFlight.h (limited to 'TestFlight.h') diff --git a/TestFlight.h b/TestFlight.h new file mode 100644 index 0000000..cd98c52 --- /dev/null +++ b/TestFlight.h @@ -0,0 +1,35 @@ +// +// TestFlight.h +// libTestFlight +// +// Created by Colin Humber on 8/25/10. +// Copyright 2010 23 Divide Apps. All rights reserved. + +#import + +@interface TestFlight : NSObject { + +} + +/** + Add custom environment information + If you want to track a user name from your application you can add it here + */ ++ (void)addCustomEnvironmentInformation:(NSString *)information forKey:(NSString*)key; + +/** + Starts a TestFlight session + */ ++ (void)takeOff:(NSString *)teamToken; + +/** + Track when a user has passed a checkpoint after the flight has taken off. Eg. passed level 1, posted high score + */ ++ (void)passCheckpoint:(NSString *)checkpointName; + +/** + Opens a feeback window that is not attached to a checkpoint + */ ++ (void)openFeedbackView; + +@end -- cgit 1.4.1