gpt4 book ai didi

ios - textFieldIndex (0) 超出了文本字段数组的范围

转载 作者:行者123 更新时间:2023-12-01 16:41:13 25 4
gpt4 key购买 nike

我已经广泛搜索了答案,但没有找到任何接近的答案。

以下代码:

UIAlertView *welcome = [[UIAlertView alloc] initWithTitle:@"Welcome"
message:@"Please Enter Your Credentials to Proceed"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[welcome show];

给出以下 错误 :

textFieldIndex (0) is outside of the bounds of the array of text fields



如果我更改 alertView输入 UIAlertViewStylePlainTextInput然后它起作用了,我不知道为什么!

任何帮助,将不胜感激。

最佳答案

你在哪里打电话-textFieldAtIndex:alertView不具有或不具有 textField 的对象.

检查以下内容:

[welcome textFieldAtIndex:0];

或者...
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
//...
[alertView textFieldAtIndex:0];
//...
}

这可能是如果您使用多个 alertView对象并且尚未处理完成的案例处理以对 alertView 的实现进行 fork 具有 textField 的对象和另一个 alertView没有 textField

关于ios - textFieldIndex (0) 超出了文本字段数组的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24222512/

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