An application I am designing will be used to sync data between the iPhone and a database. I am writing the data on the iPhone using 'writeToFile' and similar methods, and syncing it periodically with the database. Is there any way I can make this data appear in the Spotlight search utility on the iPhone?

link|improve this question

Pretty sure this is reserved exclusively for system-managed databases. – sudo rm -rf Mar 17 '11 at 18:56
feedback

1 Answer

up vote 1 down vote accepted

No. When you write to a file, that file is written into your apps "sandbox". Only your app and no other part of the device can access the contents of your sandbox.

link|improve this answer
Thanks, I suspected there might be some sort of quarantined storage for app data. I've seen plenty of answers to this question simply stating that Spotlight cannot search within apps, I'm glad there's a more in-depth answer. – Andrew Mar 20 '11 at 17:35
glad I could help – Andrew Mar 20 '11 at 20:54
feedback

Your Answer

 
or
required, but never shown

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