gpt4 book ai didi

objective-c - 我可以使用webview的scrollview.bounces属性来处理webview滚动吗?

转载 作者:行者123 更新时间:2023-12-02 05:50:26 42 4
gpt4 key购买 nike

我想停止在webview中弹跳。如果我在代码中使用以下语句,我的应用程序会在appstore中被拒绝吗?

self.viewController.webView.scrollView.bounces = NO;

谢谢!

最佳答案

if ([[[UIDeice currentDevice] SystemVersion] floatValue] >= 5.0)//iOS>=5.0
{
webView.scrollView.bounces = NO;
}
else//iOS<5.0
{
for (id subview in webView.subviews)
{
if ([[subview class] isSubclassOfClass: [UIScrollView class]])
((UIScrollView *)subview).bounces = NO;
}
}

关于objective-c - 我可以使用webview的scrollview.bounces属性来处理webview滚动吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16766952/

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