05-02-2009, 03:12 AM
|
#13 (permalink)
|
|
New Member
Join Date: Apr 2009
Posts: 2
|
This works...
Thanks for the info.
Quote:
Originally Posted by coolblade
This seems to work too (although it's not part of the API):
Code:
@interface UIScrollView (extended)
- (void)setAllowsRubberBanding:(BOOL)allowsRubberBanding;
@end
@implementation InfoViewController
- (void)viewDidLoad{
[(UIScrollView*)[webview.subviews objectAtIndex:0] setAllowsRubberBanding:NO];
}
@end
|
|
|
|