gpt4 book ai didi

iphone - iPhone有弹出编辑器功能吗?

转载 作者:行者123 更新时间:2023-12-03 20:19:32 25 4
gpt4 key购买 nike

我想弹出一个带有编辑器框的简单对话框,让用户输入一些值然后返回。我想知道iPhone SDK是否有这种支持。

谢谢。

最佳答案

我在以下位置找到了解决方案: http://www.iphonedevsdk.com/forum/iphone-sdk-development/1704-uitextfield-inside-uialertview.html

这是适合我的代码。

UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:@"Your title here" message:@"this gets covered" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
UITextField *myTextField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)];

CGAffineTransform myTransform = CGAffineTransformMakeTranslation(0.0, 130.0);
[myAlertView setTransform:myTransform];

[myTextField setBackgroundColor:[UIColor whiteColor]];
[myAlertView addSubview:myTextField];
[myAlertView show];
[myAlertView release];

关于iphone - iPhone有弹出编辑器功能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/283090/

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