I’ve mentioned a number of great open source projects released by Roman Efimov most recently the iOS 7 inspired zooming menu control RESideMenu.
Here’s another nice library called RETableViewManager from Roman. RETableViewManager makes it very easy to set up custom table views and custom cells, and map your objects to those custom cells.
There’s also a wide variety of included custom components included.
Here is a set of images showing RETableViewManager in action from the readme:
And here’s a source code example from the readme showing how easy it is to set up a basic tableview with RETableViewManager:
{
[super viewDidLoad];
// Create the manager and assign a UITableView
//
_manager = [[RETableViewManager alloc] initWithTableView:self.tableView];
// Add a section
//
RETableViewSection *section = [RETableViewSection sectionWithHeaderTitle:@"Test"];
[manager addSection:section];
// Add a string
//
[section addItem:@"Just a simple NSString"];
// Add a basic cell with disclosure indicator
//
[section addItem:[RETableViewItem itemWithTitle:"String cell" accessoryType:UITableViewCellAccessoryDisclosureIndicator selectionHandler:^(RETableViewItem *item) {
NSLog(@"Test: %@", item);
}]];
// Custom items / cells
//
_manager[@"CustomItem"] = @"CustomCell";
[section addItem:[CustomItem item]];
}
You can find RETableViewManager on Github here.
A great library for wokring with UITableView’s.
- Open Source: Custom UITableViewCell Implementation For Easy Swipeable TableView Cells
- Open Source: Library Providing iPhone A UITableViews With Moveable Cells w/o Edit Mode
- Open Source Custom iOS UITableView Control For Chat Bubbles Like The Messages App
- Great Library For Custom Controls And Easy Memory Management
- Create Great Looking UIButtons Quick And Easy
Original article: Open Source UITableView Management Library That Makes Working With Custom Cells Easier
©2013 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.





