// // 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