1

私はiphoneを初めて使用します。プロジェクトでいくつかのタスク(つまり)で打たれました。66行のテーブルビューがあります。セルごとに異なるブック名が配置され、各ブックにダウンロードボタンが配置されています。私の要件ダウンロードボタンをクリックすると、その特定のセルにのみ進行状況ビューが表示されますが、その特定のセルに入っていますが、テーブルビューをドラッグすると、一部のセルにも進行状況ビューが表示されます.これは、デキューの再利用性のためです.概念ですが、この問題を回避する方法がわかりません。テーブルビューをドラッグした後でも、ダウンロードボタン(セル)をクリックしているセルに進行状況ビューが表示されます

ここに私のコードがあります..

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

    // Return the number of sections.
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{


    return 66;

}

- (UITableViewCell *)tableView:(UITableView *)_tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UIButton *downloadButton = nil;
    CustomCell *cell = [_tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) 
    {
  //here custom cell is another class in that we have the title label declaration
        cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
         downloadButton = [UIButton buttonWithType:UIButtonTypeCustom];
        downloadButton.frame = CGRectMake(220,10,50,30);
        [downloadButton setImage:[UIImage imageNamed:@"download.png"] forState:UIControlStateNormal];
        [downloadButton addTarget:self action:@selector(downloadButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
        downloadButton.backgroundColor = [UIColor clearColor];
        downloadButton.userInteractionEnabled = YES;
        downloadButton.highlighted = YES;
        downloadButton.tag = indexPath.row;
        NSLog(@"tag is %d",indexPath.row);
        [cell.contentView addSubview:downloadButton];
}    


   NSString *titleLabel = [[appDelegate getBookNames]objectAtIndex:indexPath.row];
    cell.TitleLabel.text = titleLabel;


    return cell;
}

-(void)downloadButtonClicked:(id)sender{
  int index = [sender tag];
    NSLog(@"index of the cell is %d",index);
    UIButton *button = (UIButton*)sender;

    UITableViewCell *cell = (UITableViewCell *)[[button superview] superview];

    UILabel *titleLabel = (UILabel *)[cell viewWithTag:100];

    NSLog(@"label text =%@",titleLabel.text);
    selectedBookTitle = titleLabel.text;
    NSString* documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    NSMutableArray *allDownloadLinks;
    biblePlayerViewController = [[BiblePlayerViewController alloc]init]; 
   allDownloadLinks = [biblePlayerViewController allDownloadLinks];
    NSLog(@"all Download Links are %@",allDownloadLinks);
    biblePlayerViewController.indexOfSelectedBookTitle = [[appDelegate getBookNames]indexOfObject:selectedBookTitle];


    Download* download = [Download downloadWithTitle:selectedBookTitle url:[NSURL URLWithString:[NSString stringWithFormat:@"http://www.audiotreasure.com/%@.zip",[allDownloadLinks objectAtIndex:(biblePlayerViewController.indexOfSelectedBookTitle)]]]PathtoSave:documentsPath];
    [[DownloadManager sharedDownloadManager] queueDownload: download];

   UITableViewCell *tableViewCell = [tableView cellForRowAtIndexPath:indexPath];

    progressView.frame = CGRectMake(10, 40, 300, 20);
    [tableViewCell.contentView addSubview:progressView];

}

私のプロジェクトのスクリーンショットは[シミュレーターにある上記のコードの出力]です

4

2 に答える 2

0

私は同じ問題を抱えています。それを回避する1つの方法は、ダウンロード中にテーブルのスクロール機能をロックすることです。

于 2013-03-27T13:31:06.930 に答える
0

cellForRow で毎回セルをゼロにする必要があります。このようにして、毎回再利用されたり割り当てられたりすることはありません。あなたのテーブルビューはそれほど大きくないので、あなたのケースではかなりうまくいくはずです。cell == nil チェックの前に次の行を追加するだけです。

cell = nil;

今すぐ動作するはずです。

于 2012-06-26T12:51:49.703 に答える