Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing an iPad app with Master-detail application template. when I click on the master button provided in the template at top, I have to display all the files that are present in user's dropbox. When user clicks on any file, that file should be downloaded. I don't have to implement functionality to upload a file. I am facing some problem in doing this.

Here is my approach. I have created a NSMutableArray instance into which I will be adding all my dropbox folder contents. In my applicationDidFinishLaunching method, I invoked method to load data and in its delegate method, I added files in to my NSMutableArray. When I print the array count in the delegate method, it is working properly. But when I print the array count else where, it is printing zero. Here is my code.

All this code is in appDelegate.h

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        // Override point for customization after application launch.
        UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
        UINavigationController *navigationController = [splitViewController.viewControllers lastObject];
        splitViewController.delegate = (id)navigationController.topViewController;

        //my code
        // I replaced appKey, appSecretKey with the one that I got when I registered my app.
        DBSession* dbSession =
        [[DBSession alloc]
          initWithAppKey:appKey
          appSecret:appSecretKey
          root:kDBRootDropbox]; // either kDBRootAppFolder or kDBRootDropbox
        [DBSession setSharedSession:dbSession];
        [self didPressLink];
        self.metaArray = [[NSMutableArray alloc] init];


        [[self restClient] loadMetadata:@"/"];
        NSLog(@"DidFinishLaunching - count - %d", [metaArray count]); //Here count is zero
        [self printArray];

        return YES;
    }

    - (void)restClient:(DBRestClient *)client loadedMetadata:(DBMetadata *)metadata {
        if (metadata.isDirectory) {
           NSLog(@"Folder '%@' contains:", metadata.path);
            for (DBMetadata *file in metadata.contents) {
               [self.metaArray addObject:file.filename];
                NSLog(@"file - %@", file.filename);
            }
        }
        NSLog(@" loadedMetaData- count - %d", [metaArray count]); //here count is six.
    }

- (void) printArray {
    NSLog(@"count-%d", [metaArray count]); //here also count is zero
    for(NSString *file in metaArray) {
        NSLog(@"File-name - %@", file);
    }

}

I need to use this metaArray in my Master-view and detail view controller. When I create an instance of appDelegate in Master-view controller and check the count of metaArray, it is zero. Please let me know if anybody know how to deal this. I need to display the file names in metaArray in the Master-view controller and when a user clicks on any file name, that file should be downloaded. I have an idea on how to work on downloading.But since the metaArray is getting deallocated, I am unable to display file names in master-view controller.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.