I'd like to add a header view to an UIWebView similar to the address/search bar in MobileSafari and the excellent Articles.app by Sophia Teutschler. More precisely, I'd like to create a "pull to fix orientation" view above a UIWebView, just like in Articles. Articles does use a UIWebView, so it seems to be possible. Is there a way to accomplish this without having to embed the UIWebView into a UIScrollView and updating its size all the time, as described in this article? Apparently, I do need the scrolling events to have the "pull to fix orientation" behave accordingly.
| |||||||
feedback
|
|
After several attemps, I've decided to go with this solution: Basically I've just added my header UIView as a webview.scrollview subview. To avoid having the header overlap the browser view:
| |||||
feedback
|
|
I could not say for sure, but Twitter seems to use Here is an interesting example you might consider looking at - How to make a Pull-To-Reload TableView just like Tweetie 2 | |||||||||
feedback
|
|
Enormego published some sample code to make the pull-to-refresh thing happen: https://github.com/enormego/EGOTableViewPullRefresh It's really not so complicated. You can get a Safari/Articles-style header bar in your table view simply by creating your header bar and just adding it to your
The tricky part is observing the scroll events on the table (FYI, UITableView is a subclass of UIScrollView so all the same notifications/callbacks should work), but the sample code I linked to has a good example of how that works. | |||||
feedback
|
|
Articles may not be using a UIWebView to display the main article text. To accomplish your task, UIScrollView will be required almost certainly. Resizing its subviews may not be necessary. Check out the UIScrollView code samples provided by Apple. | |||
|
feedback
|