0

我有一个自定义 UIView 子类排行榜,它本身包含一个 tableview tblLeaderboard。该接口是使用 xib 创建的。此外,我有一个 UITableViewCell 子类 LeaderboardCell,它也有一个 xib。我在表格视图中注册单元格时遇到问题。

这是我尝试过的,首先我用tableview注册了笔尖:

-(id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if (self)
    {
        leaderInfo = [NSMutableArray array];
        tblLeaderboard.dataSource=self;
            [tblLeaderboard registerNib:[UINib nibWithNibName:@"LeaderboardCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"leaderboardCell"];

    }
    return self;
}

然后在初始化单元格时,我有:

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

    static NSString *CellIdentifier = @"leaderboardCell";

    LeaderboardCell *cell = [tableView
                             dequeueReusableCellWithIdentifier:CellIdentifier];
   if (cell == nil) {
        cell = [[LeaderboardCell alloc]
                initWithStyle:UITableViewCellStyleDefault
                reuseIdentifier:CellIdentifier];
    }

//ADDED THIS IN CASE DEFAULT CELL WAS LOADED
 cell.textLabel.text = [[leaderInfo objectAtIndex:indexPath.row] objectForKey:@"name"   ];
    cell.name.text = [[leaderInfo objectAtIndex:indexPath.row] objectForKey:@"name"];        
    cell.score.text = [[[leaderInfo objectAtIndex:indexPath.row] objectForKey:@"score"] stringValue];

    return cell;
} 

单元格不加载笔尖。它只是创建一个自定义单元格(默认单元格正确加载名称和分数,所以我知道数据源工作正常)。

我不确定我是否因为使用 UIView 而不是 ViewController 来控制我的 UITableView 而遇到麻烦?

4

1 回答 1

0

我对xibs并没有很多经验,但是在我的旧项目中,我是这样做的:

    static NSString *leaderBoardIdentifier = @"leaderboardCell"; //cell identifier same name as identifier in xib cell's attribute inspector
    LeaderboardCell *cell = (LeaderboardCell *)[tableView dequeueReusableCellWithIdentifier:leaderBoardIdentifier];

    if (cell == nil)
    {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:leaderBoardIdentifier owner:self options:nil];
        cell = [nib objectAtIndex:0];

    }

我有我的单元格的 xib 文件和 h/m 文件。在我的 .h 中,我刚刚连接了来自 xib 的元素。

单元类中的 initWithStyle 和 setSelected 方法中有默认代码。

于 2013-10-01T15:54:24.317 回答