gpt4 book ai didi

iphone - 如何更改iPhone应用程序中AlertView的框架...?

转载 作者:行者123 更新时间:2023-12-03 21:20:50 26 4
gpt4 key购买 nike

我想在 AlertView 上添加文本框。但是当我添加时,它与上面的按钮重叠很少...所以我想增加alertview的高度和宽度...有人能告诉我任何想法吗?

最佳答案

尝试以下代码:

UIAlertView alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Title", nil) 
message:NSLocalizedString(@"Message\n\n\n", nil)
delegate:self
cancelButtonTitle:NSLocalizedString(@"Cancel", nil)
otherButtonTitles:NSLocalizedString(@"OK", nil), nil];

UITextField textField = [[UITextField alloc] initWithFrame:CGRectMake(16.0, 100.0, 250.0, 25.0)];
textField.borderStyle = UITextBorderStyleRoundedRect;

[alertView addSubview:textField];
[textField release];
[alertView show];
[alertView release];

关于iphone - 如何更改iPhone应用程序中AlertView的框架...?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5016108/

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