0

我有一个UIWebView适合我拥有的论坛的移动风格。在 Safari 中,它看起来和工作都很棒。

但是,在我的内部WebView有一个灾难性的问题。

引用或编辑帖子时,HTML 会显示在BBcode. 此外,发布代码会导致忽略换行符。

webview 是这样加载的:

  //display the webview
    NSString *fullURL = @"http://www.mysite.com";
    NSURL *url = [NSURL URLWithString:fullURL];
    NSMutableURLRequest *requestObj = [NSMutableURLRequest requestWithURL:url];
    [_webTest loadRequest:requestObj];
4

2 回答 2

0

你想在你的 webView 中加载一个 html 字符串吗?

如果是这样的话,以下内容可能会对您有所帮助:

NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:bundlePath];

NSString *htmlString = [bundlePath pathForResource:@"index" ofType:@"html"] ;
[webView loadHTMLString:htmlString baseURL:baseURL];
于 2013-01-14T06:44:47.350 回答
0

改变你的这一行:

NSMutableURLRequest *requestObj = [NSMutableURLRequest requestWithURL:url];

使用此行并检查:

NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
于 2013-01-14T06:34:33.950 回答