i am using couple of html pages which are loaded in UIWebView , there is a add to favorite button when clicked URL of the html page should be stored in SQLite Database..
how to do this ?
thanks in advance
i am using couple of html pages which are loaded in UIWebView , there
Share
you can save them in NSUserDefaults as follow:
Saving
// saving an NSString
Retrieving
// getting an NSString
then use it in your code to retrieve the URL of the html page
to link it with your webView :