gpt4 book ai didi

iphone - 如何在 iPad 应用程序上显示 iPhone 尺寸 View

转载 作者:行者123 更新时间:2023-12-03 20:56:09 25 4
gpt4 key购买 nike

我有一个 iPhone 应用程序 (app1),必须将其作为子应用程序集成到另一个通用 iOS 应用程序 (app2) 上。

出于各种原因,我不想为我的 iPhone 应用程序 1 创建 iPad 界面,我只是希望当主应用程序 2 执行时,所有 View 都将以 iPhone 尺寸显示(在屏幕中央)一个iPad。在 app1 上我不支持横向,只支持纵向。

这有可能以某种方式实现吗?预先感谢您。

最佳答案

这是代码!

UIPopoverController *popoverController = [[UIPopoverController alloc] initWithContentViewController:yourViewController];
[popoverController setPopoverContentSize:CGSizeMake(320, 480)];

并在 iPad 屏幕中间显示 popoverController

UIDevice* thisDevice = [UIDevice currentDevice];    
if(thisDevice.userInterfaceIdiom == UIUserInterfaceIdiomPad){
[popOverController presentPopoverFromRect:CGRectMake(380, 450, 1, 1) inView:self.view permittedArrowDirections:0 animated:YES];
}

要始终保持 UIPopoverController 的大小相同,请不要忘记在每个 View 中设置 contentSizeForViewInPopover(在 viewWillAppear 中执行此操作:)

- (void)viewWillAppear:(BOOL)animated{

[self setContentSizeForViewInPopover:CGSizeMake(320, 480)];
}

关于iphone - 如何在 iPad 应用程序上显示 iPhone 尺寸 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5144154/

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