将文本从 UIAlertView 文本字段传递到自定义单元格标签

Posted

技术标签:

【中文标题】将文本从 UIAlertView 文本字段传递到自定义单元格标签【英文标题】:Passing text from a UIAlertView text field to a custom cell label 【发布时间】:2014-06-10 13:26:32 【问题描述】:

我有一个从 SQLite 数据库中提取信息并填充 TableView 中的单元格的应用程序。但是,我希望用户能够单击一个单元格,然后能够通过 AlertView 编辑该单元格中的内容。以下是我的代码的一部分:

    //Set up cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:    (NSIndexPath *)indexPath

CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];


cell.textLabel.text = [resultSet objectAtIndex:indexPath.row];

return cell;


-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath

CustomCell *cell = [tableView cellForRowAtIndexPath:indexPath];

UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Question" message:@"Please enter a new question" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
av.alertViewStyle = UIAlertViewStylePlainTextInput;
txtNewQuestion = [av textFieldAtIndex:0];
txtNewQuestion.clearButtonMode = UITextFieldViewModeWhileEditing;
av.delegate = self;
[txtNewQuestion setPlaceholder:@"new Question"];
[av show];
[self.txtNewQuestion becomeFirstResponder];


-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex  



if (buttonIndex == 1) 

    CustomCell *cell;
    enteredQuestion = txtNewQuestion.text;
    cell.customLabel.text = enteredQuestion;
    NSLog(@"%@", enteredQuestion);
    NSLog(@"%@", cell.customLabel.text);


[self.tableView reloadData];


任何帮助将不胜感激。谢谢。

【问题讨论】:

有什么问题?文本为空/nil? 【参考方案1】:

我会改用 didSelectRowAtIndexPath,有时我喜欢使用标签:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;

    UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Question" message:@"Please enter a new question" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
    av.alertViewStyle = UIAlertViewStylePlainTextInput;
    av.delegate = self;
    av.tag = [indexPath row];
    [av show];


-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

    if (buttonIndex == 1) 
        [resultSet replaceObjectAtIndex:alertView.tag withObject:[alertView textFieldAtIndex:0].text];
        [table reloadData];
    

【讨论】:

工作非常愉快,非常感谢。很遗憾还不能放弃任何投票,但谢谢!【参考方案2】:

如何在 UIAlertView 委托中获取单元格? 如何保存enteredQuestion

当您调用reloadData 时,整个表将被重构(Documentation)

【讨论】:

以上是关于将文本从 UIAlertView 文本字段传递到自定义单元格标签的主要内容,如果未能解决你的问题,请参考以下文章

带有文本字段的 iphone alertview

是否可以使用 3 个文本字段制作 UIAlertView?

UIAlertView 错误超出文本字段数组的范围但未使用文本字段

在 UIAlertView 试图查看两个文本字段。它显示文本字段数组iOS7的错误范围

UIAlertView 处理文本字段

UIAlertView 文本字段捕获 onchange