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
Post a Comment