I'm looking for a way to draw a fade effect on a table view (and outline view, but I think it will be the same) when the content is scrolled. Here is an example from the Fantastical app:

fade effect on top

Also a video of a similar fade on QuickLook windows here.


To make this I tried subclassing the scrollview of a tableview with this code:

#define kFadeEffectHeight 15

@implementation FadingScrollView

- (void)drawRect: (NSRect)dirtyRect
{
    [super drawRect: dirtyRect];

    NSGradient* g = [[NSGradient alloc] initWithStartingColor: [NSColor blackColor] endingColor: [NSColor clearColor]];

    NSRect topRect = self.bounds;
    topRect.origin.y = self.bounds.size.height - kFadeEffectHeight;
    topRect.size.height = kFadeEffectHeight;

    NSRect botRect = self.bounds;
    botRect.size.height = kFadeEffectHeight;

    [NSGraphicsContext saveGraphicsState];
    [[NSGraphicsContext currentContext] setCompositingOperation: NSCompositeDestinationAtop];
    // Tried every compositing operation and none worked. Please specify wich one I should use if you do it this way

    [g drawInRect: topRect angle: 90];
    [g drawInRect: botRect angle: 270];

    [NSGraphicsContext restoreGraphicsState];
}

...but this didn't fade anything, probably because this is called before the actual table view is drawn. I have no idea on how to do this :(

By the way, both the tableview and the outlineview I want to have this effect are view-based, and the app is 10.7 only.

link|improve this question

can you provide a video of the effect or the iTunes link of the app you are inspiring on? – viggio24 Dec 22 '11 at 12:48
@viggio24 added the link to Fantastical on the app store and a video of another example – Alex Dec 22 '11 at 13:33
feedback

2 Answers

In Mac OS X (as your question is tagged), there are several gotchas that make this difficult. This especially true on Lion with elastic scrolling.

I've (just today) put together what I think is a better approach than working on the table or outline views directly: a custom NSScrollView subclass, which keeps two "fade views" tiled in the correct place atop its clip view. JLNFadingScrollView can be configured with the desired fade height and color and is free/open source on Github. Please respect the license and enjoy. :-)

Examples of JLNFadingScrollView

link|improve this answer
feedback

Just put an overlay UIView with the same color your table view is and set it's alpha to 0.3. See how it will look like below in the bottom. You can also create a shadow in the Photoshop or similar editor and put it into UIImageView and then draw it above your UITableView.

enter image description here

link|improve this answer
thanks for the answer! two problems, though: 1- I'm coding this for the mac (10.7 Lion), not iOS; 2- I wanted to do this without drawing the background on top, and specially without adding two views (one for the top and one for the bottom). Is there a way to do this only by subclassing something? – Alex Dec 22 '11 at 15:10
I don't really know how to do it without overlays, but if you'd subclass an NSTableView and put something like [self addSubview:overlay]; in it's init method and used that subclassed NSTableView, that could do the trick. – Eugene Dec 22 '11 at 15:15
1  
He asked about Mac NSTableView, not iOS UITableView. Reply from Joshua is good as he has source code displaying this in action. – strange Dec 26 '11 at 15:26
feedback

Your Answer

 
or
required, but never shown

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