cocoaTouch/TeamSettingsViewController.m
changeset 3315 4e2813713358
parent 3308 b6dcae4b6d2c
child 3323 091cf214bdd5
--- a/cocoaTouch/TeamSettingsViewController.m	Tue Apr 06 21:00:55 2010 +0000
+++ b/cocoaTouch/TeamSettingsViewController.m	Tue Apr 06 21:54:46 2010 +0000
@@ -23,7 +23,7 @@
     NSArray *contents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:teamsDirectory
                                                                             error:NULL];
     self.list = contents;
-    NSLog(@"%@\n%@", teamsDirectory, contents);
+    //NSLog(@"%@\n%@", teamsDirectory, contents);
 
     // Uncomment the following line to preserve selection between presentations.
     // self.clearsSelectionOnViewWillAppear = NO;
@@ -32,26 +32,22 @@
 }
 
 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
-    // Override to allow orientations other than the default portrait orientation.
     return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
 }
 
 
 #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 [list count];
 }
 
-
 // Customize the appearance of table view cells.
 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
     
@@ -66,8 +62,6 @@
     NSString *rowString = [[list objectAtIndex:row] stringByDeletingPathExtension]; 
     cell.textLabel.text = rowString; 
     cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
-    //cell.imageView.image = [UIImage imageNamed:@"Default.png"];
-    //[rowString release];
     
     return cell;
 }
@@ -123,7 +117,7 @@
     NSInteger row = [indexPath row];
     NSString *selectedTeam = [[list objectAtIndex:row] stringByDeletingPathExtension];
     
-    childController.teamName = selectedTeam;
+    childController.title = selectedTeam;
     [self.navigationController pushViewController:childController animated:YES];
 }
 
@@ -149,12 +143,10 @@
     // 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;
+    self.list = nil;
 }
-*/
+
 
 - (void)dealloc {
     [list release];