0

目前在我的 webView 中,我有两个按钮来增加或减少字体大小。为了节省空间,我想添加一个可以向上拉的滑块来调整字体大小。我以前从未使用过滑块,也不知道从哪里开始。这是我现有的两个按钮的代码:

- (IBAction)changeTextFontSizeSmaller
{
                textFontSize = (textFontSize > 50) ? textFontSize -5 : textFontSize;





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


    textFontSize = (textFontSize < 160) ? textFontSize +5 : textFontSize;



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

}
4

0 回答 0