gpt4 book ai didi

ios - 如何同步 Storyboard、方向、启动图像和查看背景图像

转载 作者:行者123 更新时间:2023-11-29 02:49:00 26 4
gpt4 key购买 nike

我的目的是初始 View 将具有与启动图像相同的背景图像。

我获得了一种定义纵向和横向启动图像的方法。

但是,如果我使用 Storyboard,初始 View 是纵向的。如果我在它上面设置一个 imageView 作为背景图片,如果我从横向开始,它会显示错误。

我在 Storyboard中的什么地方有机会在横向和纵向之间进行拆分,以便我可以为两种可能的模式提供两个不同的图像对于相同的 View

最佳答案

有选项:-

1) 如果 ios 6 你可以使用 autolayout 。 2) 如果是 ios 6,你可以单独设置 uicontrols 的框架并使用这两种方法

-(BOOL)shouldAutorotate
{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationLandscapeLeft ;//return UIInterfaceOrientationMaskAll;
}

然后在任何需要的地方像 ViewDidlOAd() 和 viewWillAppear() 那样做

if(UIInterfaceOrientationIsPortrait([UIApplication sharedApplication ]statusBarOrientation))
{
// change frames
}
else
{
// for landscape change frames here
}

iOS < 6.x

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation // Deprecated in iOS 6.x 
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}

关于ios - 如何同步 Storyboard、方向、启动图像和查看背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24771223/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com