NFXRippleCell

UItableviewCell get ripple effect.

Stars
26
Committers
2

#NFXRippleCellDemo

UItableviewCell get ripple effect.

##Demo

##Usage Import and replace UItableViewcell

#import "NFXRippleCell.h"
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    NFXRippleCell*cell = [[NFXRippleCell alloc] initWithStyle:0 reuseIdentifier:@"cell"];
    cell.textLabel.text = @"Touch and Ripple.";
    return cell;
}
Related Projects