我正在尝试将epub文件解析为UIWebView。我解析成功。但是我无法设置字体大小。意味着当点击epub文件页面时,字体需要增加。我添加了UISearchBar,但是如果我输入了文本,它将无法找到。因此,请给我任何建议,如果有人有相关代码,您可以提供给我。提前致谢....

最佳答案

使用此代码将起作用。


-(void)addbtnClicked:(id)sender{

if([sender tag] == 1 && textFontSize < 160){
    //textFontSize = (textFontSize < 160) ? textFontSize +5 : textFontSize;
    textFontSize = textFontSize+5;


    NSLog(@"+ btn");}
else if(textFontSize > 10){
    NSLog(@"- btn");
   // textFontSize = (textFontSize > 50) ? textFontSize -5 : textFontSize;
    textFontSize = textFontSize-5;


}
NSString *jsString = [[NSString alloc] initWithFormat:@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '%d%%'",
                      textFontSize];
[webview stringByEvaluatingJavaScriptFromString:jsString];
[jsString release];


}

关于iphone - 当点击epub文件的页面时如何为iPhone应用程序更改epub文件的文本字体大小?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10100996/

10-09 06:04