1

iPhone 5 の画面サイズに問題があります。アプリが両方の画面サイズでサポートされるように、2 つの xib ファイル( MainWindow.xibMainWindowiPhone5.xib )を作成しました。

AppDelegate.m でコーディングしようとしましたが、うまくいきません。

ここに私のAppDelegateコードがあります:

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

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone){
    UIStoryboard *storyBoard;

    CGSize result = [[UIScreen mainScreen] bounds].size;
    CGFloat scale = [UIScreen mainScreen].scale;
    result = CGSizeMake(result.width * scale, result.height * scale);

    if(result.height == 1136){
        storyBoard = [UIStoryboard storyboardWithName:@"MainWindowiPhone5" bundle:nil];
        UIViewController *tabBarController = [storyBoard instantiateInitialViewController];
        [self.window.rootViewController = self.tabBarController];
    }
}

return YES;



self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];



// Override point for customization after application launch.
// Set the tab bar controller as the window's root view controller and display.
self.window.rootViewController = self.tabBarController;
tabBarController.moreNavigationController.navigationBar.tintColor = [UIColor blackColor];
[self.window makeKeyAndVisible];
return YES;

}

コードで両方の xib を動作させるにはどうすればよいですか?

助けてください。ありがとう。

4

2 に答える 2

2

条件は::

iPhone-4S 以前の画面の場合:

 if ([[UIScreen mainScreen] bounds].size.height == 480)
 {
   ---- Your Code ----
 }

iPhone-5 画面の場合:

 if ([[UIScreen mainScreen] bounds].size.height == 568)
 {
   ---- Your Code ----
 }

うまくいけば...それはあなたを助けるかもしれません.
ありがとう。

于 2013-02-25T04:07:54.193 に答える
0

初期化に次のコードを追加します。

if([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone){
     if([UIScreen mainScreen].bounds.size.height == 568.0)){
             //move to your iphone5 storyboard
             [UIStoryboard storyboardWithName:(NSString *) bundle (NSBundle *)];
  }
     else{
             //move to your iphone4s storyboard
             [UIStoryboard storyboardWithName:(NSString *) bundle (NSBundle *)];
  }
}
于 2013-02-25T04:28:30.163 に答える