Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
朋友们,这是我的问题:我使用 SQLite 数据库在 Xcode 中填充了一个表。这就是我想要的 - 如果我的表有 20 行并且全部填充,如果新数据保存在我的 SQLite 数据库中,如何更新表?我希望新信息覆盖旧信息。如何在 Xcode 中做到这一点,有什么想法吗?提前致谢!我不确定我提供的信息是否足够,所以如果你想要一些代码或其他东西,请告诉我。
您正在做的事情的关键在于为您的表格提供的例程:cellForRowAtIndexPath。基本上,您可以编写该例程来提供您希望它提供的任何数据。一旦您知道您的数据已更新,您可以通过调用 reloadData 来刷新整个表。