I have a IPad noob question.

Here is the task I am trying to achieve:

I need to build an IPad/IPhone app that will display a lot of images and data. The problem is that this app needs to work offline as well as online. So, the data needs to stored in some way on the IPad.

I am looking for some opinions on techniques/architecture/development.

To provide a bit of background I work mainly in C#.NET and this is my first IPad app. So far I know that I can either create a native app using objective C, or go for an HTML app which later may or may not be converted to a native app.

Furthermore, I am currently testing by creating a simple html page with an image, and trying to cache the image and page so it will work offline. This so far, however is not working as the image or page do not seem to be cached.

EDIT: Does anyone know how much is the caching limit. I believe I have somewhere around 10-15 mbs of images.

I will appreciate any ideas/opinions/resources on this task.

link|improve this question

feedback

1 Answer

use CoreData to store your images offline Apple CoreData Docs

I am unsure wot you need the online bit for, are you retrieving images off the net or uploading them?

link|improve this answer
Thanks for the suggestion.Retrieving them for later use. There are around 5000 images that need to be displayed offline. – sTodorov Mar 3 '11 at 16:17
Is it possible to access the CoreData from a web application? – sTodorov Mar 3 '11 at 16:19
feedback

Your Answer

 
or
required, but never shown

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