Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terminatorover/rgcustomtableviewcell
https://github.com/terminatorover/rgcustomtableviewcell
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/terminatorover/rgcustomtableviewcell
- Owner: terminatorover
- Created: 2014-12-27T17:34:19.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-28T16:13:01.000Z (about 10 years ago)
- Last Synced: 2023-08-03T15:20:56.868Z (over 1 year ago)
- Language: Objective-C
- Size: 277 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RGCustomTableViewCell
=====================
///---->To set the Texts and text color for the 3 cells(UIColor)
- (void)setTitles:(NSArray *)listOfTitles;
- (void)setTitleColor:(UIColor *)color;//----> to set the colors for the cells themeselves(UIColor)
- (void)setBoxColors:(NSArray *)listOfColors;
//---->
to get access to the subview to which you'll add your content
- (UIView *)customContentView;///---> Delegate (this let's you know which box is being tapped 0,1,2 or if the
content View is getting tapped 3
- (void)cellTapped:(RGTableViewCell *)cell withIndex:(NSInteger )index;