0

UITableviewのカスタムセルを作成しようとしています。私が取ったアプローチは

  • をサブクラス化し、UITableViewCellUIコンポーネント(ラベル、画像など)のメンバーを持つ独自のカスタムクラスを作成しました

  • ペン先を作成し、そのクラスを私のカスタムクラスに変更しました。

これが私のクラスのコードです

ヘッダーファイル

#import <UIKit/UIKit.h>

@interface ActivePoolViewCustomCell : UITableViewCell{
    UILabel* lblDate;
}
@property (nonatomic, retain)IBOutlet UILabel* lblDate;
@end

実装ファイル

#import "ActivePoolViewCustomCell.h"

@implementation ActivePoolViewCustomCell
@synthesize lblDate;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
    }
    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

次に、ペン先を作成し、そのクラスをActivePoolViewCustomCellに変更し、UILabelをlblDateアウトレットに接続しました。

今、私が直面している問題は、次のコードを実行してニブをロードするときです

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

    static NSString *CellIdentifier = @"ActivePoolCell";

    ActivePoolViewCustomCell* cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        // Load the top-level objects from the custom cell XIB.
        NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"ActivePoolViewCustomCell" owner:self options:nil];
        // Grab a pointer to the first object (presumably the custom cell, as that's all the XIB should contain).
        cell = (ActivePoolViewCustomCell*)[topLevelObjects objectAtIndex:0];
        cell.lblDate.text = @"abcd";
    }
    return cell;
}

次のエラーが発生します

2012-10-30 18:13:56.451 Cda [637:f803] ***キャッチされない例外によるアプリの終了'NSUnknownKeyException'、理由:'[setValue:forUndefinedKey:]:このクラスはキー値コーディングに準拠していませんキーlblDate。 '

苦労して、この問題の原因がわかりません。ここでの問題は何ですか?または概念自体が間違っていますか?

4

1 に答える 1

0

私はついにそれを整理しました。問題は、ActivePoolViewCustomCellクラスを、セル自体に適用する必要があったカスタムセルペン先のファイル所有者に適用していたことです。

このビデオは私がそれを解決するのを助けました

http://www.youtube.com/watch?v=d_kO-J3DYvc

于 2012-10-30T14:06:41.610 に答える