1

我正在尝试自定义 UITableViewCell,但由于某种原因它显示为空白。有什么明显的我做错了吗?我已经从情节提要中提取了 menuLabel 作为出口,因此它被正确绑定,情节提要中的单元格链接到“MenuCell”类。

在我的 tableview 控制器中

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"MenuCell";
[self.tableView registerClass:[MenuCell class] forCellReuseIdentifier:CellIdentifier];
MenuCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if(cell == nil) {
    NSLog(@"creating a new cell");
    cell = [[MenuCell alloc] initWithStyle:UITableViewCellStyleDefault
                              reuseIdentifier:@"MenuCell"];
}

cell.menuLabel.text = @"Hello";


return cell;
}
4

2 回答 2

2

你可以用这个

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

            MenuCell *cell = (MenuCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
            if (cell == nil)
            {
                UINib* customCellNib = [UINib nibWithNibName:@"MenuCell" bundle:nil];

                // Register this nib file with cell identifier.

                [tableView registerNib: customCellNib forCellReuseIdentifier:CellIdentifier];
                cell = (MenuCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
            }
    // Whatever you want 
retrun cell;
    }

希望这会有所帮助。快乐编码:P

于 2013-09-17T11:08:30.900 回答
1

用这个....

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 
    static NSString *cellIdentifier = @"MenuCell";
        MenuCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

        if (cell == nil)
        {
            cell = [[MenuCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
            cell = (MenuCell *)[[[NSBundle mainBundle] loadNibNamed:@"MenuCell" owner:self options:nil] objectAtIndex:0];

        }
        cell.menuLabel.text = @"Hello";
        return cell;
    }

我希望它会有所帮助。

于 2013-09-17T11:01:43.943 回答