I know that this is possible in the Tweetie for iPhone or the xkcd iPhone app, but they are using a table. Any idea if this can be done for a simple UIWebView as well? I'm aware of the Javascript suggestions in this SO question, but what about making that natively?
|
|
||||
|
|
|
FYI, iOS 5 has officially introduced the property scrollView in UIWebView. I tested it. It worked perfectly with EGO's pull and refresh code. So the problem is no longer a problem for any iOS 5 devices. For downward compatibility, you still need @CedricSoubrie's code though. |
|||
|
|
|
To retrieve scroll events on UIWebView I personnaly use this code to get the scrollview that is inside the UIWebView :
It's working. You can also use it to call Anyone tried that yet ? |
|||||||
|
|
To tell the truth, UIWebVIew class has an undocumented getter method called _scrollView; So the code goes:
|
|||
|
|
To get a reference for the UIScrollView in UIWebView, simply search it by iterating trough subviews.
After that you can easily wire up things to your EGORefreshTableHeaderView interface with the UIWebView and the UIScrollView delegate callbacks. |
||||
|
|