I need to access a javascript variable which is declared inside a try block in the script
var ErrorResponse = "";
in my iOS app. I don't have much idea about javascript thats why I am unable to find out the way to do it. I am using this:
NSString *jsString = @"var temp = ErrorResponse; return temp";
NSString *myFieldValue1 = [self.viewYTParser stringByEvaluatingJavaScriptFromString:jsString];
to retrieve the value but it returns an empty string.
var ErrorResopnse = "";is empty. Set a value to it like:var ErrorResopnse = "Foo";