2

我尝试了多种方法来获取 UIWebView 上的静态标题,以便它仅滚动 html 标题下方的内容。有没有人成功做到这一点?

4

3 回答 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

我正在寻找本质上相同的东西...您可以为 div 做它,但是需要使用 2 个手指滚动 div...。

有关更多信息,请参见StackOverflow 上的讨论

布拉德

于 2009-03-06T13:02:18.203 回答