1

と をUItableview使用してデータを入力している がheightForRowAtIndexPathありcellForRowAtIndexPathます。どうやら、Apple はコード内で 2 回実行するように強制しています。

最初に、ビューのサイズを計算する必要があります (そのため、ビューを作成する必要がheightForRowAtIndexPathあります)。次に、ビューを再度作成して、実際のビューに追加する必要があります。

私はかなり複雑なビューを持っているので、2回書かなければならないときは、二重に醜いように見えます。

これを行うより良い方法はありませんか?

アップデート

これが私のコードの外観です。完全に同じではありませんが、かなり近いです。なぜアップルは私にこれを2回書かせるのですか?

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    NSLog(@"heightForRowAtIndexPath");

    //Initiating strings
    NSString *headlineString;
    NSString *subHeadlineString;
    NSString *bylineString;
    if (global.magazine.issues.count==0) {
        return 45;
    }else if(indexPath.section == global.magazine.issues.count+1) {
        //Finding the right issue and article for this row
        Issue *issue = [global.magazine.issues objectAtIndex:global.magazine.issues.count-1];

        //Creating the headline
        headlineString = [NSString stringWithFormat:@"<span class='bold_style'>FOREWORD</span>"];

        //Creating the subHeadline
        subHeadlineString = [NSString stringWithFormat:@"%@", [issue.magazine_foreword substringToIndex:100]];

        //Creating byline
        bylineString = [[NSString stringWithFormat:@"<span class='ital_style'>By %@</span>", issue.magazine_byline] capitalizedString];
    }else{
        //Finding the right issue and article for this row
        Issue *issue = [global.magazine.issues objectAtIndex:indexPath.section-1];
        Article *article = [issue.articles objectAtIndex:indexPath.row];

        //Creating the headline
        headlineString = [NSString stringWithFormat:@"<span class='bold_style'>%@</span>", [article.title uppercaseString]];

        //Creating the subHeadline
        subHeadlineString = [NSString stringWithFormat:@"%@", [article.main_text substringToIndex:100]];

        //Creating byline
        bylineString = [NSString stringWithFormat:@"<span class='ital_style'>By %@</span>", article.byline];
    }

    //Creating the labels
    NMCustomLabel *headline = [global.label headLineLabelWithString:headlineString fromTop:30 withWidth:global.screenWidth-60];
    NMCustomLabel *subHeadline = [global.label subHeadlineLabelWithString:subHeadlineString fromTop:30+headline.height+10 withWidth:global.screenWidth-60];
    NMCustomLabel *byline = [global.label articleBylineLabelWithString:bylineString fromTop:30+headline.height+10+subHeadline.height+10 withWidth:global.screenWidth-60];

    //Setting the height of the row
    return 30+headline.height+10+subHeadline.height+10+byline.height+30;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    NSLog(@"cellForRowAtIndexPath");
    //Preparing the cell
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    if (cell == nil) {
        cell = [[UITableViewCell alloc]
                initWithStyle:UITableViewCellStyleDefault
                reuseIdentifier:CellIdentifier];
    }

    //Removing former text views
    for (UIView *subview in [cell subviews]) {
        if (subview.tag == 21 || subview.tag == 22 || subview.tag == 23) [subview removeFromSuperview];
    }

    //Removing and setting tableview border
    [[cell viewWithTag:30] removeFromSuperview];
    UIView *rightBorder = [[UIView alloc] initWithFrame:CGRectMake(cell.width-1, 0, 1, cell.height)];
    rightBorder.backgroundColor = global.lightGrey;
    rightBorder.tag = 30;
    [cell addSubview:rightBorder];

    //Setting the seletion background color on the cells
    UIView *bgColorView = [[UIView alloc] init];
    bgColorView.backgroundColor = global.extraLightGrey;
    cell.selectedBackgroundView = bgColorView;
    if (global.magazine.issues.count==0) {
        return cell;
    }else if (indexPath.section-1 == global.magazine.issues.count) {
        //Finding the right issue and article for this row
        Issue *issue = [global.magazine.issues objectAtIndex:global.magazine.issues.count-1];

        //Creating the headline
        NSString *headlineString = [NSString stringWithFormat:@"<span class='bold_style'>FOREWORD</span>"];
        NMCustomLabel *headline = [global.label headLineLabelWithString:headlineString fromTop:30 withWidth:global.screenWidth-60];
        headline.tag = 21;
        [cell addSubview:headline];

        //Creating the subHeadline
        NSString *subHeadlineString = [[NSString stringWithFormat:@"%@", issue.magazine_foreword] substringToIndex:100];
        NMCustomLabel *subHeadline = [global.label subHeadlineLabelWithString:subHeadlineString fromTop:30+headline.height+10 withWidth:global.screenWidth-60];
        subHeadline.tag = 22;
        [cell addSubview:subHeadline];

        //Creating byline
        NSString *bylineString = [[NSString stringWithFormat:@"<span class='ital_style'>By %@</span>", issue.magazine_byline] capitalizedString];
        NMCustomLabel *byline = [global.label articleBylineLabelWithString:bylineString fromTop:30+headline.height+10+subHeadline.height+10 withWidth:global.screenWidth-60];
        byline.tag = 23;
        [cell addSubview:byline];
    }else{
        //Finding the right issue and article for this row
        Issue *issue = [global.magazine.issues objectAtIndex:indexPath.section-1];
        Article *article = [issue.articles objectAtIndex:indexPath.row];

        //Creating the headline
        NSString *headlineString = [NSString stringWithFormat:@"<span class='bold_style'>%@</span>", [article.title uppercaseString]];
        NMCustomLabel *headline = [global.label headLineLabelWithString:headlineString fromTop:30 withWidth:global.screenWidth-60];
        headline.tag = 21;
        [cell addSubview:headline];

        //Creating the subHeadline
        NSString *subHeadlineString = [NSString stringWithFormat:@"%@", [article.main_text substringToIndex:100]];
        NMCustomLabel *subHeadline = [global.label subHeadlineLabelWithString:subHeadlineString fromTop:30+headline.height+10 withWidth:global.screenWidth-60];
        subHeadline.tag = 22;
        [cell addSubview:subHeadline];

        //Creating byline
        NSString *bylineString = [[NSString stringWithFormat:@"<span class='ital_style'>By %@</span>", article.byline] capitalizedString];
        NMCustomLabel *byline = [global.label articleBylineLabelWithString:bylineString fromTop:30+headline.height+10+subHeadline.height+10 withWidth:global.screenWidth-60];
        byline.tag = 23;
        [cell addSubview:byline];
    }

    return cell;
}
4

4 に答える 4

2

最も簡単な解決策は、DRYの原則に従い、データソースとして使用しているオブジェクトのプロパティとして高さを追加するか、次のようなメソッドをViewControllerに追加することです。

-(CGFloat)calculateHeightForHeadline:(NSString*)headline andSubHeadline:(NSString*)subHeadline andByLine:(NSString*)byLine

そうすれば、少なくとも計算コードは1か所にしかありません。

[tableView heightForRowAtIndexPath:indexPath]または、 cellForRowAtIndexPathメソッドから呼び出すこともできます

于 2013-02-15T07:19:22.800 に答える
2

テーブルビューは、何かを描画する前に合計の高さを知る必要があるため、2回実行する必要があります。したがって、セルメソッドを呼び出す前に、すべての行の高さメソッドを呼び出します。現在のコードでは、行数によっては、テーブルが表示されるまでにわずかな遅延が発生する場合があります。計測器は、それが時間を費やしている高さの方法であることを示します。

カスタムラベルクラスが何をするのかわかりませんが、文字列または属性付き文字列の描画とサイズ計算UIKit拡張機能を使用することで、ビューを作成せずに高さを計算できる場合があります(これは高価です)。目的。

于 2013-02-15T07:20:04.403 に答える
0
heightForRowAtIndexPath

すべての行に対して呼び出されます。このデリゲート メソッドは、行の高さを返します。設計では、条件に応じて列ごとに異なる高さが必要でした。残念ながら、行が作成される前に毎回行の高さを計算する必要があります。行を描く直前に、その高さを決めているようなものです。

これを回避する方法が 1 つあります。しかし、私はあなたにそれを勧めるつもりはありません。のデザインが変わるからUITableViewです。あなたができることは、あなたが持っているすべての可能な条件からあなたの列の最大の高さを決めることができるということです. たとえば。100ピクセルと考えてみましょう。次に、残りのセルを描画できます。ただし、行のいずれかが 100 ピクセル未満の場合、空のスペースが残ります。そして毛むくじゃらに見えます。

基本的に、要件を満たすには、これを 2 回行う必要があります。他に選択肢はありません:-(

于 2013-02-15T06:33:39.990 に答える
0

なぜカスタム ラベルを で作成しているのheightForRowAtIndexpathですか? sizeWithFont:またはそのような方法でテキストのサイズを計算してみませんか?行の高さを計算するより良い方法だと思います。幸運を!

于 2013-02-15T08:11:09.100 に答える