ios – iPad中UIModalPresentationFormSheet的确切大小是多少

ios – iPad中UIModalPresentationFormSheet的确切大小是多少,第1张

概述我正在使用以下代码来显示屏幕/视图控制器. SearchParams *nxt=[[SearchParams alloc] initWithNibName:@"SearchParams" bundle:nil];UINavigationController *nvc=[[UINavigationController alloc] initWithRootViewController:nxt]; 我正在使用以下代码来显示屏幕/视图控制器.
SearchParams *nxt=[[SearchParams alloc] initWithNibname:@"SearchParams" bundle:nil];UINavigationController *nvc=[[UINavigationController alloc] initWithRootVIEwController:nxt];nvc.modalPresentationStyle=UIModalPresentationFormSheet;[self.preLCtr.preCinescape_iPadVIEwController presentModalVIEwController:nvc animated:YES];

我不确定PesentationSheet的大小.我试图截取屏幕截图取尺寸/尺寸.但它不是确切的解决方案.

问题:iPad中Present-Modal-Sheet的确切大小是多少?

解决方法 根据Apple的 documentation,尺寸可能会根据可用的屏幕尺寸而改变:

The wIDth and height of the presented vIEw are smaller than those of the screen and the vIEw is centered on the screen. If the device is in a landscape orIEntation and the keyboard is visible,the position of the vIEw is adjusted upward so that the vIEw remains visible. All uncovered areas are dimmed to prevent the user from interacting with them.

也许在加载到FormSheet的vIEwcontroller中,您可以使用以下命令在运行时确定视图大小:self.vIEw.bounds;

如果你需要调整FormSheet的大小,我在stackoverflow看到了一些答案

总结

以上是内存溢出为你收集整理的ios – iPad中UIModalPresentationFormSheet的确切大小是多少全部内容,希望文章能够帮你解决ios – iPad中UIModalPresentationFormSheet的确切大小是多少所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1099228.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存