2

我正在尝试将我的 Dropbox 文件加载到 UITableView 中,但它们没有显示出来。从在 dropbox.com 上注册我的应用程序到在我的应用程序中实现会话委托,我完成了每一步。这是我的代码,任何人都可以告诉我它有什么问题。我很确定我正确地声明了一切,但我似乎找不到问题。我也知道这不是连接问题,因为我添加了一个 NSLog 并记录了文件。

#import <UIKit/UIKit.h>
#import <DropboxSDK/DropboxSDK.h>

@interface testViewController : UITableViewController <DBRestClientDelegate>
{
    DBRestClient *restClient;
    NSMutableArray *dropboxURLs;
}
@end

#import "testViewController.h"

@interface testViewController ()

@end




@implementation testViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (DBRestClient *)restClient {
    if (!restClient) {
        restClient =
        [[DBRestClient alloc] initWithSession:[DBSession sharedSession]];
        restClient.delegate = self;
    }
    return restClient;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    dropboxURLs = [[NSMutableArray alloc] init];
    [[self restClient] loadMetadata:@"/"];
}

- (void)restClient:(DBRestClient *)client loadedMetadata:(DBMetadata *)metadata {
    if (metadata.isDirectory) {
        for (DBMetadata *file in metadata.contents) {
            if (!file.isDirectory)
            {
                NSLog(@"%@", file.filename);
                [dropboxURLs addObject:file.filename];
            }
        }
    }
}

- (void)restClient:(DBRestClient *)client
loadMetadataFailedWithError:(NSError *)error {

    NSLog(@"Error loading metadata: %@", error);
}


- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#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 dropboxURLs.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"FileCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if(cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    cell.textLabel.text = [dropboxURLs objectAtIndex:indexPath.row];

    return cell;
}

@end
4

4 回答 4

0

将内容添加到 dropboxURLs 数组后重新加载表格视图。

[self.tableView reloadData];
于 2012-08-17T15:37:14.517 回答
0
    -(void)restClient:(DBRestClient *)client loadedMetadata:(DBMetadata *)metadata {
    if (metadata.isDirectory) {
        for (DBMetadata *file in metadata.contents) {
            if (!file.isDirectory)
            {
                NSLog(@"%@", file.filename);
                [dropboxURLs addObject:file.filename];
            }
        }
    }
    [self. tableView reloadData];
   }

不要忘记将 UITableView 的委托和数据源设置为 self。

于 2013-02-01T10:14:15.800 回答
0
  • 我们必须从 DropBoxRoot 加载数据
  • 加载 MetaData 后,重新加载 tableview
  • (void)viewDidLoad{
    [超级 viewDidLoad];
    dropboxURLs = [[NSMutableArray alloc] init];
    [自加载数据];
    }
-(void) loadData{
if ([DBSession sharedSession].root == kDBRootDropbox) {
    photosRoot = @"/";//can specify any folder like /Photos,/Public etc
}
[self.restClient loadMetadata:photosRoot withHash:photosHash];
}


- (void)restClient:(DBRestClient*)client loadedMetadata:(DBMetadata*)metadata {

photosHash = metadata.hash;

NSArray* validExtensions = [NSArray arrayWithObjects:@"jpg", @"jpeg",@"png",@"txt",@"pdf",@"doc",@"mp3",@"mp4", nil];
for (DBMetadata* child in metadata.contents) {

    NSString* extension = [[child.path pathExtension] lowercaseString];

    if (!child.isDirectory && [validExtensions indexOfObject:extension] != NSNotFound) {
        [directory addObject:child.filename];
    }else{
        [allFileAndDirectory addObject:child.filename];
    }
    [myTableView reloadData];
}
于 2014-03-28T13:03:54.700 回答
0

在您调用 addObject 后立即尝试这样的操作:

[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade];
于 2012-08-17T15:50:00.893 回答