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
Hi I am experiencing the above issue in iOS7 and have made a fix in my app. I would like to confirm if anyone else is having this issue?
As my fix is for iOS7 only should I put a logic statement like if (iOS7) else do other code or is there a better way?
The text was updated successfully, but these errors were encountered:
I added this to TSMiniWebBrowser.m in initWebView() below the line: webView.delegate = self;
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) { webView.scrollView.contentInset = UIEdgeInsetsMake(64, 0, 0, 0); webView.scrollView.scrollIndicatorInsets = UIEdgeInsetsMake(64, 0, 0, 0); }
Sorry, something went wrong.
No branches or pull requests
Hi I am experiencing the above issue in iOS7 and have made a fix in my app. I would like to confirm if anyone else is having this issue?
As my fix is for iOS7 only should I put a logic statement like
if (iOS7) else do other code or is there a better way?
The text was updated successfully, but these errors were encountered: