We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
可以的,只要自定义scrollview就可以了,可以通过tabContentScrollView自定义你VC的scrollView
Sorry, something went wrong.
我設定了uiwebview 在viewcontroller, 然後在這裡加了UIwebview, 一切都可以 但webview 裡面textinpiut, 鍵盤彈出時就bug了, scroll offset 就不正確 if ([self.view isKindOfClass:[UIScrollView class]]) { [self setTabContentScrollView:(UIScrollView )self.view]; } else { for (UIScrollView subview in self.view.subviews) { if ([subview isKindOfClass:[UIScrollView class]] && CGSizeEqualToSize(subview.frame.size, self.view.frame.size)) { [self setTabContentScrollView:subview]; break; }else if ([subview isKindOfClass:[UIWebView class]]) { UIWebView webView = (UIWebView) subview; [self setTabContentScrollView:webView.scrollView]; break; } } }
我不是很清楚哪里出了问题,你能定位到什么原因吗?
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: