在 iPhone 中对 uiwebview 进行分页
我现在正在 iPhone 中实现一个 epub 阅读器。我正在使用 uiwebview 来显示文件。它工作正常,但我无法在 uiwebview 中对 html 文件进行分页。
我使用以下代码对 uiwebview 进行分页:
for(id subviedw in myWebView.subviews)
if ([[subview class] isSubclassOfClass:[UIScrollView class]]) {
((UIScrollView *)subview).pagingEnabled = YES;
break;
}
}
它可以对 uiwebview 进行分页,但它是垂直分页的。如何对html文件进行水平分页? (使用JavaScript?)
I'm now implementing an epub reader in iphone. I'm using uiwebview to display the files. It works fine but I cannot paginate a html file in uiwebview.
I use the following code to paginate the uiwebview:
for(id subviedw in myWebView.subviews)
if ([[subview class] isSubclassOfClass:[UIScrollView class]]) {
((UIScrollView *)subview).pagingEnabled = YES;
break;
}
}
It can paginate the uiwebview but it paginates vertically. How can I paginate the html file horizontally? (using javascript?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我了解,可以使用 CSS3 列 http://www.w3.org /TR/css3-multicol/ 在 iPhone 上将长文本分成页面。
As far as I understand, it is possible to use CSS3 columns http://www.w3.org/TR/css3-multicol/ to break long text into pages on the iPhone.