I would like to help but I'm not sure what is being requested of us to test?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu


)



Quote from: Slydog on 2011-Oct-28hahah looks like we owe Slydog a beer, he called it
Ha, it'd be funny if the problem is because Incredibuild only sees the first 10 or so files! And all files after that are not checked!
I'm glad you narrowed down a project to replicate this bug!
I'm glad I could help.. and I knew it had something to do with the number of files..! I only really noticed it recently ever since splitting my code into a whole bunch of files.
TestFlight isn't a way to find testers.. just the means to send out test builds directly to peple's iDevices without them needing to sync to iTunes.

Quote
In your Application Delegate:
Import TestFlight: #import "TestFlight.h" NOTE: If you do not want to import TestFlight.h in every file you may add the above line into you pre-compiled header (<projectname>_Prefix.pch) file inside of the
#ifdef __OBJC__ section.
This will give you access to the SDK across all files.
Get your Team Token which you can find at http://testflightapp.com/dashboard/team/ select the team you are using from the team selection drop down list on the top of the page and then select edit.
Launch TestFlight with your Team Token
-(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// start of your application:didFinishLaunchingWithOptions
// ...
[TestFlight takeOff:@"Insert your Team Token here"];
// The rest of your application:didFinishLaunchingWithOptions method
// ...
}