cocoaTouch/TeamSettingsViewController.m
changeset 3308 b6dcae4b6d2c
parent 3305 91074496d5c9
child 3315 4e2813713358
--- a/cocoaTouch/TeamSettingsViewController.m	Mon Apr 05 17:22:54 2010 +0000
+++ b/cocoaTouch/TeamSettingsViewController.m	Tue Apr 06 02:39:06 2010 +0000
@@ -16,14 +16,15 @@
 #pragma mark View lifecycle
 - (void)viewDidLoad {
     [super viewDidLoad];
-    
+
     NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
-    NSString *teamsDirectory = [[paths objectAtIndex:0] stringByAppendingString:@"Teams/"];
+    NSString *teamsDirectory = [[paths objectAtIndex:0] stringByAppendingString:@"/Teams/"];
     
     NSArray *contents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:teamsDirectory
                                                                             error:NULL];
     self.list = contents;
-   
+    NSLog(@"%@\n%@", teamsDirectory, contents);
+
     // Uncomment the following line to preserve selection between presentations.
     // self.clearsSelectionOnViewWillAppear = NO;
     // Uncomment the following line to display an Edit button in the navigation bar for this view controller.