gpt4 book ai didi

iphone - 当点击 epub 文件页面时 如何更改 iPhone 应用程序 epub 文件文本的字体大小?

转载 作者:行者123 更新时间:2023-12-03 19:44:21 26 4
gpt4 key购买 nike

我正在尝试将 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com