gpt4 book ai didi

ios - 为 webView 添加 swipeGesture 并停止 ZoomIn 和 ZoomOut

转载 作者:行者123 更新时间:2023-11-28 08:35:27 25 4
gpt4 key购买 nike

我需要将 swipeGesture 添加到我的 UIWebView,但是我需要停止那个 UIWebView 的 ZoomIn 和 ZoomOut

/*Swipe is enabled and zoom as well*/
webViewPlayer.scalesPageToFit = true

当我把它改成

webViewPlayer.scalesPageToFit = false
//zooming and swipe both disabled

编辑 1

我只想在没有 ZoomInZoomOut 的情况下将 swipeGesture 滑动到 UIWebView

我已经尝试将 swipeGesture 添加到 UIWebViewself.view

最佳答案

试试这个...

因为 UIWebView 中包含 scrollview 所以你可以使用下面的方法来检查滚动是在哪个方向上。

这是检查滑动方向的另一种方法,因为滑动手势在 UIWebView 上效果不佳。

scrollviewDelegate赋给UIWebView

    webView.scrollView.delegate = self

ScrollView 代理

func scrollViewWillEndDragging(scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer<CGPoint>)
{
if velocity.x < 0
{
print("Going Left!")
}
else if velocity.x > 1
{
print("Going Right!")
}
}

关于ios - 为 webView 添加 swipeGesture 并停止 ZoomIn 和 ZoomOut,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37875053/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com