gpt4 book ai didi

ios7 presentviewcontroller 无法设置框架

转载 作者:行者123 更新时间:2023-11-29 12:46:44 26 4
gpt4 key购买 nike

我在 iOS 6 中使用过这段代码,我可以在主视图中间呈现另一个 View 。但是,当我在 iOS 7 中运行时,呈现的 View 的原点始终位于 0,0。我该怎么办?

rect= CGRectMake((self.view.bounds.size.width/2)-300,(self.view.bounds.size.height/2)-200,600,400);
self.navigationController.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentViewController:sVCiPad animated:YES completion:nil];
[sVCiPad.view setFrame:rect];

最佳答案

modalPresentationStyle 更改为 UIModalPresentationFormSheet

代替

self.navigationController.modalPresentationStyle = UIModalPresentationCurrentContext;

试试这个

sVCiPad.modalPresentationStyle = UIModalPresentationFormSheet;

关于ios7 presentviewcontroller 无法设置框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23512830/

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