Possible duplicate:Stop UIWebView with "bouncing" vertically?
You can just help me disable the bounce in UIWebView. Because when we scroll it, it displays unnecessary space with a grayish back layer. Thanks in advance.
You can try the following:
for (id subview in YourWebView.subviews){ if ([[subview class] isSubclassOfClass: [UIScrollView class]]) ((UIScrollView *)subview).bounces = NO; }
Source: https://habr.com/ru/post/1305729/More articles:Migrating a project from ASP.NET MVC1 to ASP.NET MVC2 - asp.net-mvcmysql: data encryption and decryption - mysqlUnable to bind text box to selected item in JTable in NetBeans - data-bindingOne true domain model is an error? - architecturejQuery Accordion expand all div - jqueryChange the background image of UIButton more than once per second - iphoneI cannot make the jQuery UI accordion tab change colors when used (e.g.: visited), can I? - jqueryEnabling full documentation for Java EE in eclipse - javaregarding the function of changing the container C ++ stl - c ++C ++ MIDI File Reading Library - c ++All Articles