Frage

Does a UIWebView under iOS inherit the private browsing mode setting from Safari?

I have had issues with sessionStorage and private mode in mobile safari and I'm trying to assess if I could face similar issues pulling the page into a UIWebView.

War es hilfreich?

Lösung

Yes UIWebView does have the private browsing mode by default. The Cookie data is accessible by the App only. NSHTTPCookie's singleton instance stores the Cookie information of the UIWebView. You may need to use deleteCookie: method to clear the cached data.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top