Open Source: Easy UITableView Replacement Library For Quick Table View Creation

In the past I’ve mentioned l QuickDialog, and the brilliant premium Sensible Tableview libraries for making UITableView creation easier.

While the feature set ofthis control isn’t really comparable to Sensible Tableview which provides considerably more functionality it does provide greater versatility than Quickdialog which was designed primarily for forms.

The control is BAMEasyTable and allows for easier regular tableviews, tableviews with images, indexed tableviews, grouped tableviews and more.

Here’s an example code snippet showing how easy it is to create a UITableView from an array with BAMEasyTable:

NSArray *yourArray = [[NSArray alloc] initWithObjects:@"Item One"@"Item Two"nil];
BAMEasyTable *bamEasyTable = [[BAMEasyTable alloc] initWithStyle:UITableViewStylePlain];
[bamEasyTable loadTableFromArray:yourArray];
[self.navigationController pushViewController:bamEasyTable animated:YES];
[bamEasyTable release];
[yourArray release];

You can find the homepage for BAMEasyTable here with full instructions. Be sure to check out the demo and delegate posts.

Definitely looks like a great library, and it has been updated to work properly with iOS 5.

 

©2011 iPhone, iOS 5, iPad SDK Development Tutorial and Programming Tips. All Rights Reserved.

.

DeliciousTwitterTechnoratiFacebookLinkedInEmail


Leave a Reply

Your email address will not be published. Required fields are marked *