fancy
fancy

Reputation: 51383

When you add a webapp to the homescreen in iOS you can no longer store cookies

So my goal is to use offline storage to do this.

The main goal is remembering login information.

In what form should I store the data and how should I actually go about doing this?

Examples would be great, thanks!

Upvotes: 1

Views: 1063

Answers (2)

kervich
kervich

Reputation: 487

Use persistent storage. See this example from Apple docs.

UPD: Apple recommends using persistent storage facilities of HTML5 now. However, the above mentioned article is quite informative.

Upvotes: 2

xeonarno
xeonarno

Reputation: 426

think about the manifest system and store a dynamic javascript file with login variable inside... just an idea

Upvotes: 0

Related Questions