#import "WorkoutsTableViewController.h"
#import "WorkoutsListTableViewController.h"
#import "iScheduleFitnessAppDelegate.h"
@implementation WorkoutsTableViewController
@synthesize workoutsArray;
@synthesize workoutsListViewController;
@synthesize primaryLabel,secondaryLabel,myImageView;
#pragma mark -
#pragma mark Initialization
/*
- (id)initWithStyle
UITableViewStyle)style {
// Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
self = [super initWithStyle:style];
if (self) {
// Custom initialization.
}
return self;
}
*/
#pragma mark -
#pragma mark View lifecycle
/*
- (void)viewDidLoad {
[super viewDidLoad];
self.title = NSLocalizedString(@"Workouts", @"Body Categories");
/*
NSMutableArray *array = [[NSArray alloc] initWithObjects
"Leg Workouts", @"Chest Workouts", @"Back Workouts", @"Shoulder Workouts", @"Bicep Workouts", @"Tricep Workouts", @"Ab Workouts", @"Miscellaneous Workouts", @"Streching Workouts", nil];
self.workoutsArray = array;
[array release];
*/
/*
workoutsArray = [[NSArray alloc] initWithObjects
"Bicep Workouts", @"Tricep Workouts", @"Back Workouts", @"Leg Workouts", @"Chest Workouts", @"Streching Workouts", @"Ab Workouts", @"Shoulder Workouts", @"Miscellaneous workouts", nil];
[self setTitle
"Workouts"];
*/
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
/*
- (void)viewWillAppear
BOOL)animated {
[super viewWillAppear:animated];
}
*/
/*
- (void)viewDidAppear
BOOL)animated {
[super viewDidAppear:animated];
}
*/
/*
- (void)viewWillDisappear
BOOL)animated {
[super viewWillDisappear:animated];
}
*/
/*
- (void)viewDidDisappear
BOOL)animated {
[super viewDidDisappear:animated];
}
*/
/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation
UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/
#pragma mark -
#pragma mark Table view data source
- (NSInteger)numberOfSectionsInTableView
UITableView *)tableView {
// Return the number of sections.
return 1;
}
- (NSInteger)tableView
UITableView *)tableView numberOfRowsInSection
NSInteger)section {
// Return the number of rows in the section.
return 5;
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView
UITableView *)tableView cellForRowAtIndexPath
NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[CustomCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
switch (indexPath.row) {
case 0:
cell.primaryLabel.text = @"Meeting on iPhone Development";
cell.secondaryLabel.text = @"Sat";
cell.myImageView.image = [UIImage imageNamed
"meeting_color.png"];
break;
case 1:
cell.primaryLabel.text = @"Call With Client";
cell.secondaryLabel.text = @"Six";
cell.myImageView.image = [UIImage imageNamed
"call_color.png"];
break;
case 2:
cell.primaryLabel.text = @"Appointment with Joey";
cell.secondaryLabel.text = @"One";
cell.myImageView.image = [UIImage imageNamed
"calendar_color.png"];
break;
case 3:
cell.primaryLabel.text = @"Call With Client";
cell.secondaryLabel.text = @"Planned";
cell.myImageView.image = [UIImage imageNamed
"call_color.png"];
break;
case 4:
cell.primaryLabel.text = @"Appointment with Joey";
cell.secondaryLabel.text = @"Hours";
cell.myImageView.image = [UIImage imageNamed
"calendar_color.png"];
break;
default:
break;
}
return cell;
/*
self.tableView.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed
""]];
*/
/*
// Override to support conditional editing of the table view.
- (BOOL)tableView
UITableView *)tableView canEditRowAtIndexPath
NSIndexPath *)indexPath {
// Return NO if you do not want the specified item to be editable.
return YES;
}
*/
/*
// Override to support editing the table view.
- (void)tableView
UITableView *)tableView commitEditingStyle
UITableViewCellEditingStyle)editingStyle forRowAtIndexPath
NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source.
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view.
}
}
*/
/*
// Override to support rearranging the table view.
- (void)tableView
UITableView *)tableView moveRowAtIndexPath
NSIndexPath *)fromIndexPath toIndexPath
NSIndexPath *)toIndexPath {
}
*/
/*
// Override to support conditional rearranging of the table view.
- (BOOL)tableView
UITableView *)tableView canMoveRowAtIndexPath
NSIndexPath *)indexPath {
// Return NO if you do not want the item to be re-orderable.
return YES;
}
*/
#pragma mark -
#pragma mark Table view delegate
/*
- (void)tableView
UITableView *)tableView didSelectRowAtIndexPath
NSIndexPath *)indexPath {
// Navigation logic may go here. Create and push another view controller.
/*
<#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName
"<#Nib name#>" bundle:nil];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];
*/
NSInteger row = [indexPath row];
if (self.workoutsListViewController == nil) {
workoutsListViewController = [[WorkoutsListTableViewController alloc] init];
}
workoutsListViewController.title = [NSString stringWithFormat
"%@", [workoutsArray objectAtIndex:row]];
iScheduleFitnessAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate.workoutsNavController pushViewController:workoutsListViewController animated:YES];
}
#pragma mark -
#pragma mark Memory management
//*
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Relinquish ownership any cached data, images, etc. that aren't in use.
}
- (void)viewDidUnload {
// Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
// For example: self.myOutlet = nil;
}
- (void)dealloc {
[workoutsListViewController release];
[super dealloc];
}
@end[/code]
#import "WorkoutsListTableViewController.h"
#import "iScheduleFitnessAppDelegate.h"
@implementation WorkoutsTableViewController
@synthesize workoutsArray;
@synthesize workoutsListViewController;
@synthesize primaryLabel,secondaryLabel,myImageView;
#pragma mark -
#pragma mark Initialization
/*
- (id)initWithStyle
// Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
self = [super initWithStyle:style];
if (self) {
// Custom initialization.
}
return self;
}
*/
#pragma mark -
#pragma mark View lifecycle
/*
- (void)viewDidLoad {
[super viewDidLoad];
self.title = NSLocalizedString(@"Workouts", @"Body Categories");
/*
NSMutableArray *array = [[NSArray alloc] initWithObjects
self.workoutsArray = array;
[array release];
*/
/*
workoutsArray = [[NSArray alloc] initWithObjects
[self setTitle
*/
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
/*
- (void)viewWillAppear
[super viewWillAppear:animated];
}
*/
/*
- (void)viewDidAppear
[super viewDidAppear:animated];
}
*/
/*
- (void)viewWillDisappear
[super viewWillDisappear:animated];
}
*/
/*
- (void)viewDidDisappear
[super viewDidDisappear:animated];
}
*/
/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation
// Return YES for supported orientations.
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/
#pragma mark -
#pragma mark Table view data source
- (NSInteger)numberOfSectionsInTableView
// Return the number of sections.
return 1;
}
- (NSInteger)tableView
// Return the number of rows in the section.
return 5;
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView
static NSString *CellIdentifier = @"Cell";
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[CustomCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
switch (indexPath.row) {
case 0:
cell.primaryLabel.text = @"Meeting on iPhone Development";
cell.secondaryLabel.text = @"Sat";
cell.myImageView.image = [UIImage imageNamed
break;
case 1:
cell.primaryLabel.text = @"Call With Client";
cell.secondaryLabel.text = @"Six";
cell.myImageView.image = [UIImage imageNamed
break;
case 2:
cell.primaryLabel.text = @"Appointment with Joey";
cell.secondaryLabel.text = @"One";
cell.myImageView.image = [UIImage imageNamed
break;
case 3:
cell.primaryLabel.text = @"Call With Client";
cell.secondaryLabel.text = @"Planned";
cell.myImageView.image = [UIImage imageNamed
break;
case 4:
cell.primaryLabel.text = @"Appointment with Joey";
cell.secondaryLabel.text = @"Hours";
cell.myImageView.image = [UIImage imageNamed
break;
default:
break;
}
return cell;
/*
self.tableView.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed
*/
/*
// Override to support conditional editing of the table view.
- (BOOL)tableView
// Return NO if you do not want the specified item to be editable.
return YES;
}
*/
/*
// Override to support editing the table view.
- (void)tableView
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source.
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view.
}
}
*/
/*
// Override to support rearranging the table view.
- (void)tableView
}
*/
/*
// Override to support conditional rearranging of the table view.
- (BOOL)tableView
// Return NO if you do not want the item to be re-orderable.
return YES;
}
*/
#pragma mark -
#pragma mark Table view delegate
/*
- (void)tableView
// Navigation logic may go here. Create and push another view controller.
/*
<#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];
*/
NSInteger row = [indexPath row];
if (self.workoutsListViewController == nil) {
workoutsListViewController = [[WorkoutsListTableViewController alloc] init];
}
workoutsListViewController.title = [NSString stringWithFormat
iScheduleFitnessAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate.workoutsNavController pushViewController:workoutsListViewController animated:YES];
}
#pragma mark -
#pragma mark Memory management
//*
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Relinquish ownership any cached data, images, etc. that aren't in use.
}
- (void)viewDidUnload {
// Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
// For example: self.myOutlet = nil;
}
- (void)dealloc {
[workoutsListViewController release];
[super dealloc];
}
@end[/code]
Last edited: