如何使用 UIWebView 的 Web 内容制作子视图?
我在 UIWebView 上添加了一个按钮,但是当 HTML 内容滚动时该按钮停留在该位置。我想让它用 HTML 滚动。我该怎么做?
I added a button on UIWebView, but the button is stayed at the position while HTML content is scrolling. I want to make it scroll with HTML. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
等待 iOS 5.0,UIWebView 将有一个 UIScrollView 子视图,这样您就可以在 ScollView Delegate 方法中获取页面偏移量并移动按钮。
Just wait for iOS 5.0, UIWebView will have a UIScrollView subview so you can get the page offset and move the button in the ScollView Delegate methods.