I have a UIWebView inside a normal UIViewController. The content of the UIWebView is programming/dynamically created in my program, and it could be very long (multiple table rows). Somehow, after loading, the page won't scroll more then one and half screen of content when swipe on the screen. Because of that I can only see the beginning few rows of data, but not the many others after them. Why is that?
相关问题
- Use JS/jQuery to scroll a div's content that h
- Jscrollpane - Fires a function when isAtBottom
- Rounded corners on a textarea with a scrollbar
- How do you scroll an iframe from within using jque
- Scrolling to an element within a div
相关文章
- SwiftUI automatically scroll to bottom in ScrollVi
- Do all browsers on iOS use WKWebview or UIWebVIew?
- How to prevent UIWebView video from getting remote
- How to find last load of UIWebView(Ready State 4)
- Back Button on UIWebView
- Prevent page navigation on horizontal scroll
- How to let the chrome forget the page scroll posit
- [removed] scrollBy function executed on a div
If you can't scroll to the bottom end properly using
UIWebView
:1) One way (Programmatically) to solve the problem is using proper autosizing to
UIWebView
.2) Other way (Interface Builder) to solve the problem is using proper autosizing to
UIWebView
. Go to Interface Builder->Web View->Size Inspector and tick autosizing parts in all places (As seen on Image above)