0

私はiphoneが初めてです。小さな質問があります.CustomCellというクラスがあり、以下のように必要なすべての要素を宣言しています.

// CustomCell.h

このクラスでは、getter メソッドと setter メソッドを TitleLabel、PercentageLabel、ProgressView、downloadButton に設定しています。

//  CustomCell.m

このクラスでは何よりもフレームを設定し、ここでもダウンロードボタンに画像を設定します

私の出力画面のスクリーンショットはシミュレーターにある画像は私の出力画面です

// 私のテーブル ビューには、次のメソッドが実行されることをクリックするとダウンロード ボタンがあります

-(void)downloadButtonClicked:(id)sender
{
    NSLog(@"download button clicked");
    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);

    UIView *senderButton = (UIView*) sender;
    NSIndexPath *indexPath = [tableView indexPathForCell: (UITableViewCell*)[[senderButton superview]superview]]; 
    NSLog(@"indexpath is %d",indexPath.row);

    CustomCell *customCell = [[CustomCell alloc]init];
    progressView = [[UIProgressView alloc]init];
   // [customCell.contentView insertSubview:progressView atIndex:indexPath.row];
    [customCell.contentView addSubview:progressView];

    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];


}

// cellForRowAtIndexPath テーブルビュー デリゲート メソッドでは、次のようなコードを記述しました

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

    if (cell == nil) 
    {
        cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

    }    
    NSLog(@"indexpath.row is %d",indexPath.row);
    NSLog(@"downloadmanager is %d",[[[DownloadManager sharedDownloadManager]getDownloads]count]);
  /*  if (indexPath.row<[[[DownloadManager sharedDownloadManager] getDownloads]count]) 
    {
        cell.TitleLabel.text = ((Download*)[[[DownloadManager sharedDownloadManager] getDownloads] objectAtIndex:indexPath.row]).title_;    
        cell.ProgressView.progress = (float)(((Download*)[[[DownloadManager sharedDownloadManager] getDownloads] objectAtIndex:indexPath.row]).PercentageDownloaded_ )/100.0f;
        cell.PercentageLabel.text = [NSString stringWithFormat:@"%d %%",((Download*)[[[DownloadManager sharedDownloadManager] getDownloads] objectAtIndex:indexPath.row]).PercentageDownloaded_];     
    }
    else
    {
        [tableView reloadData];
    }*/
    NSString *titleLabel = [[appDelegate getBookNames]objectAtIndex:indexPath.row];
    cell.TitleLabel.text = titleLabel;
    cell.downloadButton.tag = indexPath.row;
    NSLog(@"tag is %d",cell.downloadButton.tag);
  [cell.downloadButton addTarget:self action:@selector(downloadButtonClicked:) forControlEvents:UIControlEventTouchUpInside];

    return cell;
}

私の質問は、スクリーンショットのテーブルビューに66個のセルがあり、Revelationというブックネームがあります。テーブルビューに66番目のセルがあります(インデックスは65です)。ここで、そのセルのダウンロードボタンをクリックすると、進行状況ビューを表示する必要がありますその特定のセル (65 番目のセル) のみ。進行状況ビューを配置した後、そのセルの進行状況ビューで進行状況を表示する必要があるため、1 秒ごとにテーブル ビューをリロードしました。その特定のセル インデックスで。

4

1 に答える 1

1

セルに最初から進行状況ビューを追加してみませんか?最初は非表示にして、ダウンロードボタンをタッチすると、セルに表示するように指示します。

セルのindexPath.rowをダウンロードボタンタグに保存していることがわかります。これを使用して、以下のように選択されたセルを見つけることができます。

NSIndexPath *cellIndexPath = [NSIndexPath indexPathForRow:sender.tag inSection:0];
CustomCell *cell = (CustomCell *)[tableView cellForRowAtIndexPath:nowIndex];
[cell showProgressBar];

私は頭のてっぺんのコードを書きました..それをテストしませんでした。

于 2012-06-27T07:29:49.727 に答える