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.
- Host: GitHub
- URL: https://github.com/noppefoxwolf/nfxripplecell
- Owner: noppefoxwolf
- Created: 2014-07-13T17:51:20.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-04T05:53:26.000Z (over 11 years ago)
- Last Synced: 2024-05-02T05:46:07.607Z (about 2 years ago)
- Language: Objective-C
- Size: 1.18 MB
- Stars: 26
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#NFXRippleCellDemo
=================
UItableviewCell get ripple effect.
##Demo

##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;
}
```