• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag
 

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: iOS database within sandbox
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: iOS database within sandbox


  • Subject: Re: iOS database within sandbox
  • From: Jim Geist <email@hidden>
  • Date: Fri, 22 Aug 2014 18:25:01 -0700

I don’t know of any storage quotas, I’ve seen debug logging fill up the device before the app gets whacked. And some of the games I play have gigs of data.

CoreData has a bit of a curve, but it saves you a lot once you’re used to it. It works at the object level, and just not having to serialize or deserialize your data into SQL columns is a huge win. It also has built in migration strategies so if you rev your schema between app versions, you usually don’t have to write a ton of code to transition your data manually.

The design I would recommend (and I’d love to hear if this is what others do) is to use categories to extend the classes that Xcode generates for your CoreData entities. I add methods for every type of query I need. You don’t want to change the generated classes directly, since every time you change an object, Xcode will overwrite any changes you’ve made.


On Aug 22, 2014, at 6:07 PM, Carl Hoefs <email@hidden> wrote:

>
> On Aug 22, 2014, at 6:01 PM, Jim Geist <email@hidden> wrote:
>
>> Can you use CoreData?
>
> On Aug 22, 2014, at 6:00 PM, Catchall <email@hidden> wrote:
>
>> Is there a reason to not use CoreData?
>
> Hmm, I guess that’s what CoreData is for, isn’t it? I had heard that it is pretty difficult to learn, and since I’m used to accessing databases from C/Linux, my first thought was to go the “easy” route. I’ll look into it.
>
> Regarding the other portion of my question, are there limitations to how much storage space can be used on an iPhone? Is the space managed as “first-come first-served”?
> Thx,
> -Carl
>


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: iOS database within sandbox
      • From: Shane Zatezalo <email@hidden>
References: 
 >iOS database within sandbox (From: Carl Hoefs <email@hidden>)
 >Re: iOS database within sandbox (From: Jim Geist <email@hidden>)
 >Re: iOS database within sandbox (From: Carl Hoefs <email@hidden>)

  • Prev by Date: Re: iOS database within sandbox
  • Next by Date: Re: iOS database within sandbox
  • Previous by thread: Re: iOS database within sandbox
  • Next by thread: Re: iOS database within sandbox
  • Index(es):
    • Date
    • Thread