2

これは私がカスタムセルをロードするために発明した方法です

1)UITableViewCellクラス拡張を使用します

//.h

@interface UITableViewCell (Extended)

+ (id) cellWithClass:(Class)class;

+ (id) cellWithClass:(Class)class fromNibNamed:(NSString *)nibName;

@end

//.m

+ (id) cellWithClass:(Class)class
{
    return [UITableViewCell cellWithClass:class fromNibNamed:NSStringFromClass(class)];
}

+ (id) cellWithClass:(Class)class fromNibNamed:(NSString *)nibName {

    NSArray * nibContents = [[NSBundle mainBundle] loadNibNamed:nibName owner:self options:NULL];

    NSEnumerator * nibEnumerator = [nibContents objectEnumerator];
    NSObject * nibItem = nil;

    while ((nibItem = [nibEnumerator nextObject]) != nil) {

        if ([nibItem isKindOfClass:class]) {
            return nibItem;
        }

    }

    return nil;
}

2)同じ名前の.nib(CustomCell.xib)を使用して、カスタムUITableViewCellサブクラスを作成します。ここで、すべてのアウトレットが接続されています

@interface CustomCell : UITableViewCell

@property (weak, nonatomic) IBOutlet UILabel * labelSmth;

- (void) setupWithTitle:(NSString *)title;

@end

2)Interface Builderを使用してCustomCell.xibで、UITableViewCellをドラッグしてCustomCellのクラスにします(再利用識別子CustomCellを使用)(ファイル所有者を設定しません)...そしてUIのスタイル設定を行うよりも、アウトレットを接続します...

3)このようにロードするより

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString * identifier = @"CustomCell";

    CustomCell * cell = [self.tableView dequeueReusableCellWithIdentifier:identifier];

    if (cell == nil) {

        cell = [UITableViewCell cellWithClass:[CustomCell class]];

    }

    [CustomCell setupWithTitle:[self.titles objectAtIndex:[indexPath row]]];

    return cell;
}

*このアプローチは大丈夫ですか?これは多くのプロジェクトで機能しましたが、iamはreuseidentfierについて、およびセルが適切に再利用されるかどうかについてはわかりません... *

iamもこれについてわからない

NSArray * nibContents = [[NSBundle mainBundle] loadNibNamed:nibName owner:self options:NULL];

クラスメソッドで所有者selfを渡すとき...

また、アップルは思いついた

- (void) registerNib:(UINib *)nib forCellReuseIdentifier:(NSString *)reuse;

これは私のアプローチにどのように適合しますか?

また、メソッドが必要な場合のように、カスタム再利用識別子を使用する方法もあります

+ (id) cellWithClass:(Class)class fromNibNamed:(NSString *)nibName reuseIdentifier:(NSString *)reuseIdentifier;
4

1 に答える 1

3

このために何か新しいものを発明する必要はありません。それはすでにあなたのために発明されています。そして、あなたが考案したのは、カスタム セルをロードするための一般的なアンチ パターンです。

nib の UITableViewCell を取得するために nib の内容を列挙することは、正しい方法ではありません。

UITableViewCell(通常はUIViewController)を作成したnibのファイル所有者で、UITableViewCellを定義してアウトレットする必要があります。

次に、次のパターンを使用してそのセルにアクセスできます。

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {    
    static NSString *cellIdentifier = @"MyCustomCell"; //this should also be specified in the properties of the UITableViewCell in the nib file
    MyCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if(!cell) {
        [[NSBundle mainBundle] loadNibNamed:cellIdentifier owner:self options:nil];
        cell = self.myCustomCellOutlet;
        self.myCustomCellOutlet = nil;
    }   

    return cell;
}
于 2012-07-21T20:25:28.327 に答える