// // TablesViewController.h // FurterApp // // Created by Jeremy Stewart on 5/5/13. // Copyright (c) 2013 Levi Wilson. All rights reserved. // #import @interface TablesViewController : UIViewController { NSArray *tableData; NSArray *firstSectionData; NSArray *secondSectionData; } @property (weak, nonatomic) IBOutlet UILabel *selectedLabel; @property (weak, nonatomic) IBOutlet UITableView *testTableView; @property (weak, nonatomic) IBOutlet UITableView *multipleSectionsTable; @end