我尝试了多种方法来获取 UIWebView 上的静态标题,以便它仅滚动 html 标题下方的内容。有没有人成功做到这一点?
Liu Kang
问问题
1306 次
3 回答
1
If this needs to work only on the phone, you could just place two UIWebViews, one above the other. Display the header in one, and the content in another.
于 2009-03-09T20:55:52.923 回答
0
CSS 标准指定了一个position: fixed
属性来执行此操作,但 iPhone 上的 WebKit 不支持它。(我没有这方面的任何内部信息,但我怀疑这是因为没有明智的方法来支持缩放。)所以如果你想这样做,你必须从 web 视图之外通过 (例如)将第二个 webview 放在第一个 webview 之上,并带有静态标题。
于 2009-03-08T01:24:14.853 回答
0
于 2009-03-06T13:02:18.203 回答