• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 从 nib 加载 UITableViewCell 的特殊方法

[复制链接]
菜鸟教程小白 发表于 2022-12-13 14:54:14 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

这是我发明的一种加载自定义单元格的方法

1) 我使用我的 UITableViewCell 类扩展

//.h

@interface UITableViewCell (Extended)

+ (id) cellWithClassClass)class;

+ (id) cellWithClassClass)class fromNibNamedNSString *)nibName;

@end

//.m

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

+ (id) cellWithClassClass)class fromNibNamedNSString *)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) 创建自定义 UITableViewCell 子类,使用同名的 .nib (CustomCell.xib) 我连接了所有 socket

@interface CustomCell : UITableViewCell

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

- (void) setupWithTitleNSString *)title;

@end

2) 在 CustomCell.xib 中使用 Interface builder 我拖动一个 UITableViewCell 并使其成为 CustomCell 类(具有重用标识符 CustomCell)(我没有设置文件所有者)...而不是 UI 样式、连接 socket 等...

3) 比这样加载它

- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)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;
}

*这种方法可以吗?这适用于许多项目,但我不确定重用标识符以及单元格是否被正确重用的事实...... *

我也不确定这个

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

当我在类方法中传递所有者 self 时...

Apple 也想出了

- (void) registerNibUINib *)nib forCellReuseIdentifier:(NSString *)reuse;

这怎么可能适合我的方法?

以及如何使用自定义重用标识符,就像我想要一个方法一样

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



Best Answer-推荐答案


您无需为此发明新的东西。它已经为你发明了。您发明的是一种用于加载自定义单元格的常见反模式。

枚举 nib 内容以获取 nib 中的 UITableViewCell 不是正确的方法。

您应该在您创建 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;
}

关于ios - 从 nib 加载 UITableViewCell 的特殊方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11520093/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap