views:

569

answers:

2

The Evernote application has a tips pane which hangs over a UITableView on the initial window. When you click on tips, a straight forward animation happens with a tips pane sliding up into view.

My question is, how is that tips pane implemented in the sense that, you absolutely have to click on the tab sticking out for it to animate. Any pixel to the left of it will indeed hit the UITableViewCell. Is this a Core Graphics/Quartz trick or is it just a transparent image? It's quite difficult to articulate what I'm trying to ask here, but I hope someone understands.

Here's a screenshot of the tips pane at the bottom of the home screen of the Evernote app: http://dl-client.getdropbox.com/u/57676/evernote.jpg

A: 

I just checked the Evernote application and I can't see any tips pane. Do you have any screenshots or video that illustrates what you mean, or instructions that will make the tips pane show up for me?

Kevin Ballard
Hi Kevin, I edited my original post to contain the screenshot referencing what I'm talking about.
Coocoo4Cocoa
Ah, I looked basically everywhere except the New Note tab
Kevin Ballard
+2  A: 

It's probably using a transparent image and overrides -hitTest:withEvent: to declare the transparent parts of the image as not being part of the view.

Another possibility is it's two views, one for the tab and one for the rest of the pane, but that seems like more work to keep everything in sync.

Kevin Ballard