強火で進め

このブログではプログラム関連の記事を中心に書いてます。

UIWebViewでバウンド(バウンス)をさせない方法

UIWebViewでバウンス(bounce)をさせない方法。毎回、忘れてググッてるのでメモしとく!!

    for (id subview in webView.subviews)
        if ([[subview class] isSubclassOfClass: [UIScrollView class]])
            ((UIScrollView *)subview).bounces = NO;

元情報はこちら。

iphone - Stop UIWebView from "bouncing" vertically? - Stack Overflow
http://stackoverflow.com/questions/500761/stop-uiwebview-from-bouncing-vertically