gpt4 book ai didi

ios - 按下按钮时如何向表格 View Controller 添加一行(带有来自文本字段的数据)

转载 作者:行者123 更新时间:2023-12-01 17:38:05 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to insert new cell into UITableView in Swift

(5 个回答)


6年前关闭。




我正在制作一个使用核心数据的应用程序,我有 2 个文本字段和一个显示“保存数据”的按钮。所以我希望当按下按钮时,来自文本字段的数据显示在表格 View Controller 的新行上。在 Xcode 中使用 Objective C。

View 图像 - http://i.stack.imgur.com/7UrMO.png

谢谢
编程初学者

最佳答案

跟着这些步骤:

第一步:使用 textFields 文本更新您的模型(用于绘制单元格)。像这样的东西:

[self.items addObject:<Object_With_Both_TextFields_Text>]

第二步:在按钮点击时,插入一个新行,如下所示:
    NSIndexPath *newIndexPath = [NSIndexPath indexPathForRow:self.items.count - 1 inSection:0];
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationBottom];
[self.tableView endUpdates];

关于ios - 按下按钮时如何向表格 View Controller 添加一行(带有来自文本字段的数据),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33013816/

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