如何为 iPhone 构建一个表视图,在保存时会添加一个新行而不是替换该行?

发布于 2024-08-20 04:45:49 字数 174 浏览 6 评论 0原文

我构建了一个带有表格视图的应用程序,其中包含频率和其他数据。我想选择一行,对其进行编辑,然后将新的频率信息添加到所选行正下方的新行中,而不删除所选行。

我正在使用核心数据。使用 UIBarButtonItem *saveButton 方法一切正常。但它只是替换了行。我也可以使用 add,但它将新行放在表格视图的底部。

I built an app with a table view that holds frequencies and other data. I would like to select a row, edit it, and then add the new frequencies info to a new row right below the selected row without deleted the selected row.

I'm using core data. Everything works fine using UIBarButtonItem *saveButton method. But it just replaces the row. I also can use add but it puts the new row on the bottom of the tableview.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人生百味 2024-08-27 04:45:49

insertRowsAtIndexPaths:withRowAnimation: 将放入行。您必须弄清楚如何将正确的数据放入 cellForRowAtIndexPath 中

insertRowsAtIndexPaths:withRowAnimation: will put the row in. You'll have to figure out how to put the right data in it in cellForRowAtIndexPath

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文