cocoa touch - App to display safari cookies on iphone -


i want make app in iphone such displays history of safari browser in iphone. means want access safari cookies through other app. first time m placing query on overflow...... can please let me know this... please reply

i don't know whether work or not can try using nshttpcookie , nshttpcookiestorage classes...

code similar

nshttpcookiestorage *cookiestorage = [nshttpcookiestorage sharedhttpcookiestorage];               nsurl *url;     nsarray *cookies;     nsstring *cookiestring = @"";       cookies = [cookiestorage cookies];      if([cookies count] > 0) {         nshttpcookie *cookie =[cookies objectatindex:0];             cookiestring = [nsstring stringwithformat: @"%@=%@", [cookie name], [cookie value]];                     nslog(cookiestring);     } 

Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -