// // NavigatorLevel3.h // PocketSword // // Created by Nic Carter on 9/10/09. // Copyright 2009 The CrossWire Bible Society. All rights reserved. // #import "NavigatorSources.h" #import "PSModuleController.h" #import "SwordModule.h" @interface NavigatorModules : UIViewController { IBOutlet id table; IBOutlet id navigatorLeafView; NSArray *dataArray; //IBOutlet UITabBarController *tabController; IBOutlet NavigatorSources *navigatorSources; } @property (retain, readwrite) NSArray *dataArray; - (void)viewWillAppear:(BOOL)animated; - (void)reloadTable; - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section; - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section; - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath; - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath; - (void)dealloc; @end