在底部滚动不起作用
Posted
技术标签:
【中文标题】在底部滚动不起作用【英文标题】:scrolling in the bottom is not working 【发布时间】:2014-04-28 04:26:40 【问题描述】:我正在使用网络视图,它工作正常。但我遇到了三个问题 1.我想更改字体 2.更改字体大小 3.当我将网页内容滚动到底部时,它不会向上滚动到底部。
content=[[UIWebView alloc]init];
content.Frame=CGRectMake(10, 200, 300, 480);
[content loadhtmlString:content1 baseURL:nil];
[content loadHTMLString:[NSString stringWithFormat:@"<html><body background-colo r: transparent text=\"#eadfa8\" font-family=\"Arial Rounded MT Bold\" font-size=\".1\">%@</body></html>", [self.JSONData objectForKey:@"content"]] baseURL: nil];
[content stringByEvaluatingjavascriptFromString: @"content.body.style.fontFamily = 'Arial'"];
content.opaque=YES;
[self.view addSubview:content];
[content setBackgroundColor:[UIColor clearColor]];
[content setOpaque:NO];
在 html 编码上,我尝试将字体系列更改为 Arial,但它不起作用。帮帮我。
【问题讨论】:
content
和 self.content
有什么不同?为什么要加载loadHTMLString
两次??
对不起,只有内容只出现在那里。内容是一个网络视图。
我只是试试上面的代码。我是 ios 新手。
请检查您的 webview 框架内容。Frame=CGRectMake(10, 200, 300, 480);
NANNAV- 比你的想法多得多。我改变我的框架它的工作正常。
【参考方案1】:
前两个问题的答案是Font change inside UIWebView
您可以通过以下几行克服第三个问题
content.scalesPageToFit=TRUE;
content.scrollView.bounces = NO;
【讨论】:
我在上面添加了代码,但滚动在 web 视图中不起作用,为什么?以上是关于在底部滚动不起作用的主要内容,如果未能解决你的问题,请参考以下文章