Note that there are some explanatory texts on larger screens.

plurals
  1. POApp wont start using testflight on iOS6
    text
    copied!<p>I have an application that I want to test it on iOS device. The application uses <strong>NIB files</strong> and no story board. </p> <p>Target framework is set to - 5.1 Device - Universal. </p> <p>I have created the IPA file and uploaded to TestFlightApp.</p> <p>I have downloaded and installed the application on my iPad. Weird thing is when I tap on the icon a black screen shows and nothing else happens. </p> <p>I have done the following settings.</p> <p>Main Interface - <code>SSDMainViewController</code> Main Storyboard - Not set as I don't have any storyboard in the applicaion.</p> <p>It is not the problem of IOS versions as other apps are working fine.</p> <blockquote> <p>EDIT : When I double click the iPad button I saw that the application is not crashing. It is running in the background.</p> <p>EDIT 2 : More information on the question.</p> </blockquote> <p>Well I have taken a view based application and it has all NIBs no storyboard. It was initially an iPhone application targeting the IOS 5.1 but then I have changed the value from the project drop down to <strong>UNIVERSAL</strong>. But that I think is no problem because when I installed it in my iPad it showed me nothing. Also it showed black screen with the iPhone frame and then nothing. The application is still live in the thread.</p> <p>What bothers me is that I have done this in the <code>AppDelegate</code> :</p> <p>I have set the </p> <pre><code>self.mainViewController = [[SSDMainViewController alloc] initwithnibname:@"SSDMainViewController" bundle:nil]; </code></pre> <p>And then I have set the navigation controller and then pushed the view to it. </p> <p><strong>I FOUND SOME MORE INFORMATION</strong></p> <p>In the console it says.</p> <p>The application is expected to have its root view set at the end of application start.</p> <blockquote> <p>MY APP DELEGATE</p> </blockquote> <p>ftipValue=0.25;</p> <pre><code>cardtype = @"American Express"; [cardtype retain]; [self CallFunctionForLogout]; self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; // Create an instance of YourViewController //SSDMainViewController *yourViewController = [[SSDMainViewController alloc] init]; self.mainViewController = [[[SSDMainViewController alloc] initWithNibName:@"SSDMainViewController" bundle:nil] autorelease]; // Create an instance of a UINavigationController // its stack contains only yourViewController UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:self.mainViewController]; navController.navigationBarHidden = YES; // Place navigation controller's view in the window hierarchy [[self window] setRootViewController:navController]; [self.window makeKeyAndVisible]; return YES; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload