vote up 1 vote down star

Lets say I make an App that enables users to make short notes and write things down. Is there Core Data on iPhone OS too? Or how else would you save that data in iPhone?

flag

58% accept rate
have you seen this url stackoverflow.com/questions/443223/… – Ferds Mar 1 '09 at 12:05

7 Answers

vote up 5 vote down

No. Core Data, and Cocoa Bindings, as well as Objective-C Garbage Collection are all missing from the iPhone.

Update: As mentioned below, Core Data is available with iPhone OS 3.0.

link|flag
vote up 4 vote down

If you can wait for iPhone OS 3.0, Apple's preview movie lists Core Data as one of the new features in 3.0.

link|flag
vote up 3 vote down

SQLite is generally the preferred storage method if you have a lot of data. You can code the SQL classes by hand, or there are a number of nice third-party solutions.

For smaller amounts of information, you can easily store data in a file using NSCoding and NSArchiver.

link|flag
vote up 2 vote down

I'll reiterate the above, but you could have a look at OmniDataObjects which provides Core Data-esque functionality and runs on the iPhone.

link|flag
vote up 0 vote down

If you have to do some ordering or querying on the saved data, the best solution is SQLite. Otherwise you can use serialized data. NSDictionary and NSArray provides -writeToFile methods to write serialized (in xml format) data to file.

Marco

link|flag
vote up -1 vote down

depending upon the complexity, you can save your data on sqlite database, plist files, or even create your own xml files and save them on iphone file system (usually in the documents directory)

if you dont anticipate too many reads / writes / complex lookups then stick to plist files or xml files

however anything more complex, go ahead with sqlite.

if you do go ahead with sqlite then i would suggest you to use FMDB - a cocoa wrapper for sqlite, this saves you tons of repetitive code

link|flag
vote up -2 vote down

Data saving on the iPhone is not much different - write the data to a file (like a plist). As far as I know, there's no iPhone Core Data.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.