UIWebView:缩放和限制滚动

时间:2014-09-07 02:39:07

标签: ios xcode uiwebview calendar

我的目标是将日历从here加载到我的应用中。我无法解析它,所以我尝试过简单地使用UIWebView。问题是webview显示整个页面,我只想显示日历,有没有办法自动缩放到日历并限制移动远离它(即滚动)?

注意:我没有包含代码,因为我没有错误的代码,我需要帮助找出要编码的内容。

1 个答案:

答案 0 :(得分:0)

尝试使用这些:

self.webView.scrollView.contentInset = UIEdgeInsetsMake(0.0, 0.0, 0.0, 0.0);//put the inset that you need
self.webView.scrollView.delegate = self; //implement delegate methods to restrict scrolling