所以通常加载我做的UIWebView ..
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[_webView loadRequest:request];
但是,现在我需要动态执行此操作,具体取决于用户单击的表格单元格。我从JSON加载表格单元格,一切正常。现在我需要获得" id"单元格中的帖子,并动态加载它。目前我已经尝试了这个但是它没有用......
NSURL *url = [NSURL URLWithString:@"http://www.google.com/story.php?id="];
url = [NSURL URLWithString:storyId relativeToURL:url];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[_webView loadRequest:request];
任何提示?
答案 0 :(得分:0)
为什么不直接格式化URL字符串?
NSURL *url = [NSURL URLWithString:[NSString
stringWithFormat:@"http://www.google.com/story.php?id=%@", storyId]];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[_webView loadRequest:request];