IOS - табличное представление не загружается - PullRequest
1 голос
/ 10 февраля 2012

Эй, я новичок в разработке для iOS, в моем приложении я хочу получить видеофайл из папки документа в табличное представление. Но файлы не загружаются в табличном представлении. поэтому, пожалуйста, скажите мне, где я делаю ошибку ..

- (void)viewDidLoad
{

    [super viewDidLoad];
    tblView.delegate = self;
    NSFileManager *filemgr = [NSFileManager defaultManager];
    NSString *docDirPath = NSHomeDirectory();
    docDirPath = [docDirPath stringByAppendingPathComponent:@"Documents"];
    NSArray *filelist = [filemgr contentsOfDirectoryAtPath:docDirPath error:NULL];
    NSLog(@"filelist = %@",filelist);
    int count = [filelist count];
    NSString *currentFileName;
    videoListNames = [NSMutableArray array];
    for (int j = 0; j<count; j++) 
    {
        currentFileName = (NSString *)[filelist objectAtIndex:j];
        if ([[currentFileName pathExtension] isEqualToString:@".avi"]) 
        {
            NSLog(@"currentFileName = %@",currentFileName);
            [videoListNames addObject:currentFileName];
        }
    }
    [tblView reloadData];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    return videoListNames.count;
}


 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }
    //TRY TO REMOVE ALL CONTENT
    for(UIView *view in cell.contentView.subviews){
        if ([view isKindOfClass:[UIView class]]) {
            [view removeFromSuperview];
        }
    }

    cell.textLabel.backgroundColor = [UIColor clearColor];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    //cell.backgroundView.frame = 
    cell.textLabel.text = (NSString *)[videoListNames objectAtIndex:indexPath.row];
    NSLog(@"cell text = %@",cell.textLabel.text);
    // Configure the cell.
    return cell;

}

1 Ответ

1 голос
/ 10 февраля 2012

Вы забыли установить:

tblView.datasource = self;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...