Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个博客应用程序,我在其中解析 XML,并从 XML 加载全文,并在 UIWebView 上使用 loadHTML 方法进行显示。为了让它正确显示,我必须将比例页面设置为 NO。但是,有些博客在故事中有链接,当点击这些链接时,一些页面需要缩放。你建议我怎么做才能让它正确显示所有页面?
我认为您最好使用@protocol UIWebViewDelegate 并实现@optional webViewDidFinishLoad: 。
您可以将存在的 UIWebView* 属性与某个已知数量进行比较,以了解您是否回到了原始博客页面(或跟踪离开博客的堆栈)。
在决定是否为该特定页面设置 scalePagesToFit 时,您可能可以检查 scrollView @property 的帧大小。
其中一些您将不得不实时计算并根据您认为合适的方式进行调整。