在splitview控制器中使用Webview

时间:2013-11-10 15:30:53

标签: uiwebview ios7

我在splitview应用程序中正确显示内容时遇到问题。在详细视图中,我有一个webview,我正在加载本地保存的html文件。但是文件无法正常显示 - 它们会略微放大并且左右两侧缺少细节。双击它们可以将它们缩小并正确显示。我有scaletofitpages = YES设置。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

Well, if i'm understanding  you correctly, you can use auto layout.. it will fit your content from left and right.

to set the font size you must edit your html content add "css style" to them...

// Get result into string format
    NSString *htmlData = [objSQLiteProtocol getDatabaseResults:fileNameToRead];

    // reduce the size of font to set in iPad
    htmlData = [htmlData stringByReplacingOccurrencesOfString:@"25pt" withString:@"12pt"];

    [moreWebView loadHTMLString:htmlData baseURL:nil];

    moreWebView.scalesPageToFit = YES;