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(@"6.0"))
NSLog(@"1");
if (iOSDeviceScreenSize.height == 480)
{
mainStoryboard = ;
} else {
NSLog(@"loading iPad storyboard");
mainStoryboard = ;
}
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
NSLog(@"2");
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]