ios - How to disable cookies in UIWebView ? -
ios - How to disable cookies in UIWebView ? -
i have searched , found ways clear cookies uiwebview
, want know how clear cookies ? guidance needed.
thank you.
for(nshttpcookie *cookie in [[nshttpcookiestorage sharedhttpcookiestorage] cookies]) { if([[cookie domain] isequaltostring:@"owner.ford.com"] || [[cookie domain] isequaltostring:@"ford.com"]) { nslog([cookie domain]); [[nshttpcookiestorage sharedhttpcookiestorage] deletecookie:cookie]; } } [[nsuserdefaults standarduserdefaults] synchronize];
imp: sure add together lastly nsuserdefaults line. or cookies restart app.
ios objective-c cookies uiwebview
Comments
Post a Comment