0

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

有什么建议吗?

4

1 回答 1

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;
于 2013-12-02T07:40:46.530 回答