1
我想停止反彈webview
。如果我在我的代碼中使用以下語句,我的應用程序是否會在appstore中被拒絕?我可以使用webview的scrollview.bounces屬性來處理webview滾動嗎?
self.viewController.webView.scrollView.bounces = NO;
謝謝!
我想停止反彈webview
。如果我在我的代碼中使用以下語句,我的應用程序是否會在appstore中被拒絕?我可以使用webview的scrollview.bounces屬性來處理webview滾動嗎?
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;
}
}
if (webView respondsToSelector:@selector(scrollView)]) {
webView.scrollView.bounces = NO;
} else {
for (id subview in webView.subviews) {
if ([[subview class] isSubclassOfClass:[UIScrollView class]]) {
((UIScrollView*)subview).bounces = NO;
}
}
}
看到我的回答將被接受的App Store。 – Girish