vote up 1 vote down star
2

Does anyone know of a website or resource to learn about important files / directory structures or data within the iPhone?

Soon i'll be learning to develop iPhone applications and I want to know everything about its internals, if anyone knows a resourse that would be great.

What I want to do is.

How to access the database. Where system settings are stored. How to gain access to the Mobil Comm Server

etc...

flag

25% accept rate

2 Answers

vote up 0 vote down

You keep mentioning database. What database are you talking about? In your last question about gaining access to a database, I assumed it was a database that you had as part of your app. The iPhone OS probably has many databases, including the Contacts database, the songs database, the album photos database, etc. There are some limited ways to access this data, but they're on Apple's terms and I have to emphasize the word "limited".

As a previous respondent said, the best place to start is at Apple's iPhone Dev Center, but you won't find anything on jailbroken phones, accessing any of the cell or communication systems, nor the system settings, among many other things.

link|flag
I'm fairly sure the iPhone has an SQL database installed. – RCIX Nov 7 at 8:50
1  
Just one? iPhone has SQLite installed. Each application may have any number of databases that SQLite can offer up. These databases live in the sandboxed area of each app. And by "live" I mean where the data for the database exists. There may be one SQLite, but there are many databases. And we're not even talking about the databases belonging to Core Data. – mahboudz Nov 7 at 10:09
vote up 3 vote down

All the information you'll need is available from Apple in their developer site.

File structure and other internals matter less than you'd think, as your app won't be able to get outside its sandboxed resources (unless you're writing jailbroken apps).

link|flag

Your Answer

Get an OpenID
or

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