gpt4 book ai didi

ios - 我们可以在 iOS 7 的 UIAlertView 文本字段中以编程方式插入文本吗

转载 作者:行者123 更新时间:2023-11-28 18:03:32 24 4
gpt4 key购买 nike

我们能否以编程方式在 UIAlertView 的文本字段中插入文本,iOS7

在 IOS7 中使用文本输入创建了 UIAlertView。谁能帮我“在文本字段中以编程方式插入文本”?

最佳答案

希望这会为您的问题提供答案。

            UIAlertView *alertView = [[UIAlertView alloc] init];
alertView.delegate = self;
alertView.title = @"Enter Info";
alertView.alertViewStyle = UIAlertViewStylePlainTextInput;
[alertView addButtonWithTitle:@"Cancel"];
[alertView addButtonWithTitle:@"OK"];

[alertView textFieldAtIndex:0].text = @"My Text";

[alertView show];

关于ios - 我们可以在 iOS 7 的 UIAlertView 文本字段中以编程方式插入文本吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20651710/

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