2012-10-27 8 views
9

Używam następujący kod w moim AppDelegate.m wykryć urządzenie, które użytkownik korzysta:obciążenia różni Storyboard dla iPhone 5 @ app rozpocząć

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{ 

    if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) 
    { 
     CGSize result = [[UIScreen mainScreen] bounds].size; 
     if(result.height == 480) 
     { 
      NSLog(@"iPhone 3,5 Inch"); 

      [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil]; 



     } 
     if(result.height == 568) 
     { 
      NSLog(@"iPhone 4 Inch"); 
      [UIStoryboard storyboardWithName:@"iPhone5-storyboard" bundle:nil]; 
     } 
    } 

    return YES; 
} 

Ale kiedy zbudować aplikację NSLog jest pokazane, ale nie Storyboard jest wymyślanie ...

  • głównym polu Storyboard w informacji Deployment jest pusta, tak że kod postanowił co do załadowania ...

Czy niektórzy mogą mi pomóc?

Thx i pozdrawiam z Niemiec

Laurenz :)

+1

jakiegoś powodu potrzebują różnych storyboardy, ponieważ można przełączać pomiędzy 3,5-calowym a 4-calowym układem w edytorze scenorysów? – jrturton

+1

Przełączanie pomiędzy układem 3,5 cala i 4 cale jest tylko symulacją, nie można zaprojektować różnych interfejsów białych za pomocą tej metody! –

Odpowiedz

15

Oto sposób mogę teraz znaleźć na innym stanowisku:

if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) 
    { // The iOS device = iPhone or iPod Touch 


     CGSize iOSDeviceScreenSize = [[UIScreen mainScreen] bounds].size; 
     UIViewController *initialViewController = nil; 
     if (iOSDeviceScreenSize.height == 480) 
     { // iPhone 3GS, 4, and 4S and iPod Touch 3rd and 4th generation: 3.5 inch screen (diagonally measured) 

      // Instantiate a new storyboard object using the storyboard file named Storyboard_iPhone35 
      UIStoryboard *iPhone35Storyboard = [UIStoryboard storyboardWithName:@"Storyboard_iPhone35" bundle:nil]; 

      // Instantiate the initial view controller object from the storyboard 
      initialViewController = [iPhone35Storyboard instantiateInitialViewController]; 
     } 

     if (iOSDeviceScreenSize.height == 568) 
     { // iPhone 5 and iPod Touch 5th generation: 4 inch screen (diagonally measured) 

      // Instantiate a new storyboard object using the storyboard file named Storyboard_iPhone4 
      UIStoryboard *iPhone4Storyboard = [UIStoryboard storyboardWithName:@"Storyboard_iPhone4" bundle:nil]; 

      // Instantiate the initial view controller object from the storyboard 
      initialViewController = [iPhone4Storyboard instantiateInitialViewController]; 
     } 

     // Instantiate a UIWindow object and initialize it with the screen size of the iOS device 
     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 

     // Set the initial view controller to be the root view controller of the window object 
     self.window.rootViewController = initialViewController; 

     // Set the window object to be the key window and show it 
     [self.window makeKeyAndVisible]; 

    } else if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad) 

    { // The iOS device = iPad 

     UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController; 
     UINavigationController *navigationController = [splitViewController.viewControllers lastObject]; 
     splitViewController.delegate = (id)navigationController.topViewController; 

    } 
+0

Ale gdzie umieścić ten kod? –

+1

Oczywiście w AppDelegate.m ;-) –

+0

Wyszedłem ... To było takie oczywiste! hahahha –