gpt4 book ai didi

ios - 单点触控 : Is it possible to present DialogViewController inside of a usual UIViewController

转载 作者:行者123 更新时间:2023-11-28 20:26:48 24 4
gpt4 key购买 nike

我需要为 iPad 创建登录屏幕并且我需要我的登录输入是固定宽度的。是否可以修复 DialogViewController 元素的长度或使用 UIView 元素创建布局并在其中嵌套 DialogViewController?

最佳答案

drunkcamel,你可以设置对话框 View 的框架大小,并将对话框作为 subview 添加到其他 View

public class InlineDialogViewController : UIViewController
{
public InlineDialogViewController()
{
}

public override void ViewDidLoad()
{
base.ViewDidLoad();

var dialog = new DialogViewController(null);

dialog.View.Frame = new RectangleF(0,0,100,100); // set custom dialog size

View.AddSubview(dialog.view);
}
}

关于ios - 单点触控 : Is it possible to present DialogViewController inside of a usual UIViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13643025/

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