菜鸟教程小白 发表于 2022-12-12 14:38:54

ios - 在 appdelegate 中以编程方式实例化 Storyboard


                                            <p><p>我决定为 ios6 和 ios7 使用不同的 Storyboard,因此我需要在代码中实例化 Storyboard。我在应用程序委托(delegate)的 <code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions</code> </p> 中有这个方法

<p>但什么也没发生,它总是只是实例化名为 <code>iPadStoryboard</code>的 Storyboard,当在 iPad 模拟器上运行时,我已经从 info.plist 中删除了主界面。知道这里发生了什么吗?</p>

<pre><code>- (void)loadStoryboards
{
    CGSize iOSDeviceScreenSize = [ bounds].size;

    UIStoryboard *mainStoryboard = nil;
    if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@&#34;6.0&#34;))

      NSLog(@&#34;1&#34;);
      if (iOSDeviceScreenSize.height == 480)
      {
            mainStoryboard = ;
      } else {
            NSLog(@&#34;loading iPad storyboard&#34;);
            mainStoryboard = ;
      }

    if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@&#34;7.0&#34;))

      NSLog(@&#34;2&#34;);
      if (iOSDeviceScreenSize.height == 480)
      {

            mainStoryboard = ;
      } else {
            mainStoryboard = ;
      }


    self.initialViewController = ;
    self.window = [ initWithFrame:[ bounds]];
    self.window.rootViewController = self.initialViewController;
    ;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>请注意检查 iPad 的方式。 480px 屏幕高度不覆盖 iPhone 5。使用:</p> <pre><code>if([ userInterfaceIdiom] == UIUserInterfaceIdiomPad)
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 appdelegate 中以编程方式实例化 Storyboard,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18839150/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18839150/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 appdelegate 中以编程方式实例化 Storyboard