gpt4 book ai didi

ios - 如何从 presentModalViewController 函数创建一个更小的 UIView?

转载 作者:行者123 更新时间:2023-11-29 13:33:35 24 4
gpt4 key购买 nike

我想问一下,如果我想创建一个自定义的 UIView,就像一个气泡弹出窗口,我可以使用 presentModalViewController 吗?

如何自定义尺寸?

如果没有,那我需要用addsubView吗?但是controller还是之前的那个,如何从新创建的uiview中关闭它?

谢谢

最佳答案

我自己解决。

我添加了一个新的 UIViewController,并通过 BI 对其进行了自定义。并在下面设置几行,

controller.view.frame = CGRectMake(10, 30, controller.view.frame.size.width,controller.view.frame.size.height);
[self.view addSubview:controller.view];
[self addChildViewController:controller];

如果你想通过下面的方式删除它们,

UIView* subview = [self.view viewWithTag:STORE_VIEW_TAG];
[subview removeFromSuperview];
[self removeFromParentViewController];

关于ios - 如何从 presentModalViewController 函数创建一个更小的 UIView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11200445/

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