iOS4 上 uitableview 上的 iphone sqlite 数据
我需要制作一个像地址簿这样的视图控制器,在其中我在网格上显示来自 sqlite 数据库的数据,并且在我可以编辑之后(显示一个新的视图控制器,其中包含我可以更改值的行的详细信息),删除并插入新行...
我该如何做到这一点或更好,是否有一个示例可以简单地做到这一点? 谢谢
I need to make a viewcontroller like the address book for example, where I show the data from a sqlite database on a grid, and after I can edit (show a new viewcontroller with the detail of the row where I can change the values), delete and insert new rows...
how can I do this or better, is there a sample to make this simply?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将有助于入门:
http://developer.apple .com/library/ios/#documentation/userexperience/conceptual/TableView_iPhone/
您可能只想从包含数据的数组/字典/类开始,然后继续尝试使用核心数据加载它作为sqlite。
This will be helpful to get started:
http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/TableView_iPhone/
You may want to start off with just an array/dictionary/class containing your data, then move onto trying to load it with core data as an sqlite.