これは私がカスタムセルをロードするために発明した方法です
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;