Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

iOS documention says, that the UIWebView class conforms to UIScrollViewDelegate. But an UIWebView instance does not call the scrollViewDidScroll method of its controller. The delegate is set just right by

[webView setDelegate:self];

and webViewDidFinishLoad is called successfully. The controller implements both delegates, UIWebViewDelegate and UIScrollViewDelegate, like this:

@interface WebviewController : UIViewController<UIWebViewDelegate, UIScrollViewDelegate>{
    UIWebView *webView;
}

Browsing SO leads to that category solution:

@implementation UIWebView(CustomScroll)
- (void) scrollViewDidScroll:(UIScrollView *)scrollView{
    [self.delegate scrollViewDidScroll: scrollView];
}
@end

That category approach does basically the same: Calling the delegate's scrollViewDidScroll method. So why does the the first approach not work?

share|improve this question
did you set delegate for scrollView? webView.scrollView.delegate = self ? – pawelropa Aug 23 '12 at 14:28
No, I didn't. And yes, that works! – alex Aug 23 '12 at 14:37
So, a UIWebView instance sets its scrollViews's delegate to that instance by default? Looks like... Otherwise the category approach would not work. – alex Aug 23 '12 at 14:48
To work this code have to set inside category scrolView delegate to webview and then inside UIWebView(CustomScroll) scrollViewDidScroll this message is send to through self.delegate (which is the delegate of UIWebView) to object which responds to webView delegate. So yes this code can work. – pawelropa Aug 23 '12 at 15:35

1 Answer

up vote 7 down vote accepted

My guess is you set up delegate only for UIWebView. Try setting delegate of scrollView.

webView.scrollView.delegate = self

it should be ok.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.