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.

link|improve this question

5  
Have you tried asking Sophie? – hatfinch Mar 22 '10 at 20:48
Have you tried adding a subview to the UIWebView? – benzado Nov 14 '10 at 20:31
feedback

4 Answers

up vote 1 down vote accepted

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:

  • cycle through all [webview.scrollView subviews]
  • look for the biggest, wich should contains the browser (the others are for shadows and lines)
  • change its origin.y

    here's the code:

    CGRect browserCanvas = CGRectMake(0,0,320,416);
    for(int i=0; i< [[web.scrollView subviews] count]; i++)
    {
      UIView* subview = [[web.scrollView subviews] objectAtIndex:i];
      CGRect f = subview.frame;
      NSLog(@"sub %d -> x:%.0f, y:%.0f, w:%.0f, h:%.0f", i, f.origin.x, f.origin.y, f.size.width, f.size.height);
    
      if(f.origin.x == browserCanvas.origin.x && 
         f.origin.y == browserCanvas.origin.y && 
         f.size.width == browserCanvas.size.width && 
         f.size.height == browserCanvas.size.height)
         {
             f.origin.y = header.frame.size.height;
             subview.frame = f;
         }
    }
    
    if(![header superview])
    {
      [web.scrollView addSubview:header];
      [web.scrollView bringSubviewToFront:header];
    }
    
link|improve this answer
1  
What about using the contentInsets of the scrollView (and set your frame y to be negative) ? – kenji Feb 9 at 20:43
feedback

I could not say for sure, but Twitter seems to use UITableView to achieve this. Perhaps you can try to put your view in the header of the table view, and your content in a cell.

Here is an interesting example you might consider looking at - How to make a Pull-To-Reload TableView just like Tweetie 2

link|improve this answer
1  
I don't have any problems with implementing this stuff for any sort of UITableView, but I need to have it for an UIWebView. – MrMage Nov 5 '10 at 23:20
1  
I think Adam was suggesting to make a tableView with a single custom cell that contains a UIWebView with your web content loaded in it. – slycrel Nov 13 '10 at 7:29
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 UITableView as a subview. I'm doing exactly that on the app I'm working on now:

GBSpendingMeter *meterView = [[[GBSpendingMeter alloc] initWithFrame:CGRectMake(0,0,320,44)] autorelease];

// The meterView will appear pinned to the top of the table, similar to a headerView
[self.tableView addSubview:meterView];

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.

link|improve this answer
2  
I don't have any problems with implementing this stuff for any sort of UITableView, but I need to have it for an UIWebView. – MrMage Nov 5 '10 at 23:19
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.

link|improve this answer
Articles almost certainly uses a UIWebView. – MrMage Nov 5 '10 at 23:20
feedback

Your Answer

 
or
required, but never shown

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