An open API service indexing awesome lists of open source software.

https://github.com/noppefoxwolf/nfxripplecell

UItableviewCell get ripple effect.
https://github.com/noppefoxwolf/nfxripplecell

Last synced: about 1 year ago
JSON representation

UItableviewCell get ripple effect.

Awesome Lists containing this project

README

          

#NFXRippleCellDemo
=================

UItableviewCell get ripple effect.

##Demo
![](http://i.imgur.com/LftgTD4.gif)

##Usage
Import and replace UItableViewcell
```objc
#import "NFXRippleCell.h"
```

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