需要iPhone中核心数据的简单示例程序

发布于 2024-11-15 19:38:31 字数 88 浏览 1 评论 0原文

请分享一个简单的程序(或链接)来了解 iPhone 中的核心数据。该程序应涵盖 add &删除表视图中的条目。最好没有 IB 项目。

谢谢

Could please share a simple program(or link) to understand core data in iPhone. The program should cover add & delete a entry in table view. Program without IB is preferable.

Thank you

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

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

发布评论

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

评论(5

土豪我们做朋友吧 2024-11-22 19:38:31

你读过苹果开发者中心的核心数据编程指南吗? 链接

Have you read through the core data programming guide on the Apple Developer center? link

你在看孤独的风景 2024-11-22 19:38:31

Take a look at the Stanford iPhone development course, in particular lecture 12
http://www.stanford.edu/class/cs193p/cgi-bin/drupal/downloads-2010-fall

Apple also have a lot of sample code in the developer program, including an excellent introduction to core data http://developer.apple.com/library/ios/#documentation/DataManagement/Conceptual/iPhoneCoreData01/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008305

私藏温柔 2024-11-22 19:38:31
  1. 打开 Xcode
  2. 文件 ->新建项目
  3. iOS 或 Mac 应用程序,
  4. 再次选择应用程序类型(主从等),选择
  5. 选择下一步
  6. 为其命名、公司标识符
  7. 选中“使用 CoreData”旁边的框
  8. 选择下一步
  9. 在文件上找到一个家您的新应用程序的系统(~/Documents 就可以正常工作)
  10. 选择 Create
  11. Open [Your App Name]AppDelegate.m 并注意 Xcode 为您编写了所有 coredata 脚手架!
  1. Open Xcode
  2. File -> New Project
  3. iOS or Mac App, you choose
  4. Select the App Type (Master-Detail, etc) again, you choose
  5. Choose Next
  6. Give it a name, company identifier
  7. Check the box next to "Use CoreData"
  8. Choose Next
  9. Find a home on the file system for your new app (~/Documents will work just fine)
  10. Choose Create
  11. Open [Your App Name]AppDelegate.m and notice that Xcode wrote all the coredata scaffolding for you!
韬韬不绝 2024-11-22 19:38:31

我也在寻找与此相关的简单示例,但不幸的是找不到它直接告诉我。这是我准备的。这是一个非常基本的示例 iOS 项目,仅显示使用纯 Core Data 框架在 SQLite 中保存和检索数据。
http://www.iosmobileapps.biz/examples/CoreDataEx.zip
希望您会发现这很有用。

I was also looking for simple example regarding this but unfortunately could not found which tells me straight forward. Here is what I have prepared. It is very basic example iOS project, shows only save and retrieve data in SQLite using pure Core Data framework.
http://www.iosmobileapps.biz/examples/CoreDataEx.zip
Hope you will find this useful.

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