Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/i2097i/srexpandabletableview
A simple expandable table view
https://github.com/i2097i/srexpandabletableview
Last synced: 7 days ago
JSON representation
A simple expandable table view
- Host: GitHub
- URL: https://github.com/i2097i/srexpandabletableview
- Owner: i2097i
- Created: 2014-07-01T04:21:37.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-28T02:16:36.000Z (about 10 years ago)
- Last Synced: 2024-03-15T19:00:58.658Z (8 months ago)
- Language: Objective-C
- Size: 207 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ExpandableTableViewExample
==========================This is a subclass of a ```UITableViewController``` that allows for expandable/collapsable sections.
To use it, simply import the ```SRExpandableTableViewController.h``` and ```SRExpandableTableViewController.m```
files into your xCode project, create a UITableViewController and make it a subclass of the
```SRExpandableTableViewController``` class. Initlialize the datasource with the```
-(void)setSRExpandableTableViewControllerWithContent:(NSArray *)contentArray andSectionLabels:(NSArray *)labelsArray;
```method and that's it!
Note: I did utlize some QuartzCore stuff in the class so be sure to link the QuartzCore framework to your
project.