Hi guys, I need to modify dinamically a Javascript inside my UIWebView. I load a file html locally, inside the Documents folder of my app. I need to create a var attributes like this:
var attributes = {
"feedURL": "http://www.obliviux.com/?feed=rss2", //insert NSString *RSS here
"maxAgeToShow": "-1", //insert NSString *maxAge here
"numItemsToShow": "10", //insert NSString *numItems here
"topStories": "3" //insert NSString *topStories here
};
and modify their value with some NSString I have saved.. how can i do this?? Thanks to everyone can help me :)