質問

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.

役に立ちましたか?

解決

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.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top