Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to open data from my json database in a webview.

Here is my code, but it doesn't work can someone help me?

NSString* jsonString = @"http://heurigenapp.cache.gugler.at/json.php";
NSData* jsonData = [jsonString dataUsingEncoding:NSUTF8StringEncoding];
NSDictionary* jsonDict = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:NULL];
NSString* link = [jsonDict objectForKey:@"Link"];
NSURLRequest* linkUrl = [NSURL URLWithString:link];
[webView loadRequest:linkUrl];   
share|improve this question

1 Answer

get your link in NSURL object and then set request with this NSURL object like bellow..

NSURLRequest *urlRequest;
NSURL *urlforWebView;
urlforWebView=[NSURL URLWithString:[jsonDict objectForKey:@"Link"]];
urlRequest=[NSURLRequest requestWithURL:urlforWebView];
[webView loadRequest:urlRequest];
share|improve this answer
[self.view addSubView:webView]; no visible @interface for 'UIView' declares the selector 'addSubView – theandrew Nov 28 '12 at 9:11
@user1823117 now see the code and use it i edit code.. here you required NSURL to set the url string and the use this url in urlrequest just see the code and add in your code... – Paras Joshi Nov 28 '12 at 9:13
sorry but i do not exactly understand what you mean ... – theandrew Nov 28 '12 at 9:21
mate u use this line NSURLRequest* linkUrl = [NSURL URLWithString:link]; instead of like this code NSURLRequest* linkUrl urlRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:link]]; try this line mate.. – Paras Joshi Nov 28 '12 at 9:22
NSString* jsonString = @"heurigenapp.cache.gugler.at/json.php";; NSData* jsonData = [jsonStringdataUsingEncoding:NSUTF8StringEncoding]; NSDictionary* jsonDict = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:NULL]; NSString* link = [jsonDict objectForKey:@"Link"]; //NSURLRequest* linkUrl = [NSURL URLWithString:link]; NSURLRequest* linkUrl; urlRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:link]]; [webView loadRequest:linkUrl]; – theandrew Nov 28 '12 at 9:42
show 10 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.