如何为 iPhone 构建一个表视图,在保存时会添加一个新行而不是替换该行?
我构建了一个带有表格视图的应用程序,其中包含频率和其他数据。我想选择一行,对其进行编辑,然后将新的频率信息添加到所选行正下方的新行中,而不删除所选行。
我正在使用核心数据。使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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