// // NavigatorModuleLanguages.h // PocketSword // // Created by Nic Carter on 22/10/09. // Copyright 2009 The CrossWire Bible Society. All rights reserved. // #import "NavigatorSources.h" @interface NavigatorModuleLanguages : UIViewController { IBOutlet id table; IBOutlet id navigatorModules; PSModuleType *data; //IBOutlet UITabBarController *tabController; IBOutlet NavigatorSources *navigatorSources; } @property (retain, readwrite) PSModuleType *data; - (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