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.
在 UIWebView 上,我正在寻找一种方法来禁用滑动滚动(当您滑动一根手指时它会滚动)但仍保留拖动或平移(在拖动/平移时按住手指)webview 的能力。
有什么建议么?
UIWebView 是 UIScrollView 的子类,因此您可以通过 UIWebView 访问 UIScrollView 的所有属性。
所以,试试这个,它会禁用滚动,但用户交互仍然会打开。
[web.scrollView setScrollEnabled:NO];
享受编码......